-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
163 lines (158 loc) · 6.25 KB
/
index.html
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" sizes="32x32" href="./images/logo.png" />
<title>Charmaine Lee</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/style.css" />
<script
src="https://kit.fontawesome.com/b7a4928992.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="index.html"
><img src="images/logo.png" alt="Logo"
/></a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0 gap-2 text-center">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="subpage-3.html">Past Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="subpage-1.html">Behind The Scenes</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<div class="landing-page container text-center mt-4">
<h1>Hello, I am <span class="accent-text">Charmaine</span></h1>
<h2 class="mb-4 role fs-5 fw-bold opacity-75">
Web Developer . Illustrator
</h2>
<picture>
<source type="image/webp" srcset="images/landing-page-image.webp" />
<img
class="img-fluid"
src="images/landing-page-image.png"
alt="Girl doing work on her laptop"
/>
</picture>
<div class="row mt-4">
<p class="col-10 offset-1 col-lg-8 offset-lg-2">
I believe that the ability to provide good user experience is
important for a business to thrive. I love creating good intuitive
design, which is why I fell in love with frontend development the
moment I discovered it. While creating web applications that are
both visually pleasing and functional, I get to incorporate some
elements of fun into them to make user experience more enjoyable.
I'm also fascinated by the ever-changing nature of this industry,
and the never-ending opportunities for me to learn and grow.
<br />
<br />
Having experience in both web development and illustration equips me
with both the technical and artistic skills to come up with creative
solutions while solving problems, and I would love to use these
skills to improve the lives of people.
</p>
</div>
<div class="row justify-content-center mb-4 gap-2">
<div class="col-md-auto">
<a class="list__link" href="subpage-3.html">Past Projects</a>
</div>
<div class="col-md-auto">
<a class="list__link" href="subpage-1.html">Behind The Scenes</a>
</div>
</div>
<div class="row">
<div
class="landing-page__card col-md-6 offset-md-3 col-10 offset-1 py-4"
>
<img class="mb-3" src="images/icon-code.png" alt="" />
<p class="card__heading mb-1">Skills:</p>
<p>HTML, CSS, JavaScript</p>
<p class="card__heading mb-1">Frameworks & Libraries:</p>
<p>ReactJS, Tailwind CSS, Bootstrap, Express, NodeJS</p>
<p class="card__heading mb-1">Database:</p>
<p>MongoDB, PostgreSQL</p>
<p class="card__heading mb-1">Dabbled On:</p>
<p>C++, Python, three.js</p>
</div>
</div>
</div>
</main>
<footer>
<div class="text-center mt-5">
<p class="footer__email fw-bold">[email protected]</p>
<div class="social-grp d-flex gap-2 justify-content-center mb-3">
<a
class="social-btn d-flex justify-content-center align-items-center"
href="https://github.com/charmainelhm"
target="_blank"
><i class="fa fa-github-alt"></i
></a>
<a
class="social-btn d-flex justify-content-center align-items-center"
href="https://www.linkedin.com/in/charmainelhm/"
target="_blank"
><i class="fa fa-linkedin"></i
></a>
<a
class="social-btn d-flex justify-content-center align-items-center"
href="https://twitter.com/noodercob_ie"
target="_blank"
><i class="fa fa-twitter"></i
></a>
</div>
<p class="accent-text footer__attribution">
Designed & built by Charmaine Lee, 2022
</p>
</div>
<button onclick="topFunction()" class="btt-btn" title="Back to Top">
<i class="fas fa-arrow-up"></i>
</button>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
<script src="js/script.js"></script>
</body>
</html>