-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (74 loc) · 2.97 KB
/
index.html
File metadata and controls
83 lines (74 loc) · 2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Frontend Projects Playground</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap"
/>
<meta name="color-scheme" content="light dark" />
</head>
<body>
<header>
<h1>🎨 journey to amazing interactive web experiences.</h1>
<p class="greeting">!hola!</p>
</header>
<main>
<section class="intro">
<h2>welcome to my front-end projects playground!</h2>
<p>
i'm on a journey to become a skilled UI Design Engineer. this
repository is hosted using GitHub Pages and contains my projects as I
learn HTML, CSS and JavaScript. sometimes, I learn by coding; most
times, I code to learn.
</p>
</section>
<section class="portfolio-link">
<h2>🔗 live portfolio site</h2>
<a href="#">Visit the live site</a>
</section>
<section class="content-overview">
<h2>📁 what you'll find here.</h2>
<ul>
<li>small interactive projects</li>
<li>flexbox and layout practice</li>
<li>anything else I explore while learning to code.</li>
</ul>
</section>
<section class="learning">
<h2>🧠 what i'm learning.</h2>
<ul>
<li>writing clean, semantic HTML</li>
<li>styling with CSS and making the web responsive</li>
<li>adding interactivity with JavaScript</li>
<li>implementing accessible code</li>
<li>using Git and GitHub for version control and collaboration</li>
</ul>
</section>
<section class="current-projects">
<h2>🔦 projects so far.</h2>
<ul>
<li>password generator – generates random passwords on click. <a target="_blank" href="https://cvemann.github.io/random-password-generator">{View project} </a></li>
<li>Flutterwave homepage - a replica of Flutterwave's homepage rebuilt with only HTML and CSS. <a target="_blank" href="https://cvemann.github.io/flw">{View project} </a></li>
<li>my tribute page - a tribute to me<a target="_blank" href="https://cvemann.github.io/tribute-page">{View project} </a></li>
</ul>
</section>
<section class="upcoming-projects">
<h2>🚧 projects in progress</h2>
<p>design system – putting together a component library.</p>
<p>each commit brings me one step closer to mastering frontend.</p>
<p>stay tuned for more!</p>
</section>
<section class="contact">
<h2>💬 i'm always open to learning!</h2>
<p>feel free to open an issue or reach out to me, please.</p>
</section>
</main>
<footer>
<p>built with curiosity and caffeine by Ukpong Godswill ☕</p>
</footer>
</body>
</html>