-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (69 loc) · 3.1 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
<!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">
<title>Simple Personal Site</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="assets/favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat&family=Sacramento&display=swap"
rel="stylesheet">
</head>
<body>
<div class="top-container">
<img class="top-cloud" src="assets/cloud.png" alt="cloud">
<h1>I'm Glenn.</h1>
<p class="intro">Front-End Developer.</p>
<img class="bottom-cloud" src="assets/cloud.png" alt="cloud">
<img src="assets/mountain.png" alt="mountain">
</div>
<div class="middle-container">
<div class="profile">
<img class="img-avatar" src="assets/avatar.png" alt="img-avatar">
<h2>Hello There.</h2>
<p class="bio">I'm Glenn Vhalado. Passionate about writing code, solving problems, automating stuff, and building
software.
<ul>
<li>🔭 Junior Web Dev who use <span class="bio-span"> HTML, CSS and JS</span> to make weird stuff.</li><br>
<li>🌱 I’m currently learning <span class="bio-backend"> Backend Dev</span></li><br>
<li>👯 I’m ready to Hire for my first Job</li>
</ul>
</p>
</div>
<hr>
<div class="skills">
<h2>My Skills.</h2>
<div class="skill-row">
<img class="webdev-img" src="assets/programming.png" alt="computer">
<h3>Front End Development</h3>
<p>Front End Development is building out the visual components of a website. Using HTML, CSS , and Javascript, I
build fast, interactive websites.
This also may include a CMS, API's or other integrations.</p>
</div>
<div class="skill-row">
<img class="uiux-img" src="assets/front-end.png" alt="ui/ux">
<h3>UI/UX Design</h3>
<p>UI/UX involves planning and iterating a site's structure and layout.
Once the proper information architecture is in place, I design the visual layer to create a beautiful user
experience.</p>
</div>
</div>
<hr>
<div class="contact-me">
<h2>Get In Touch</h2>
<h3>Feel free to ask me about project or job.</h3>
<p class="contact-message">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Facilisis gravida neque convallis a cras. Aliquam nulla facilisi
cras fermentum odio eu feugiat pretium.</p>
<a class="btn" href="mailto:gvhalado@gmail.com">CONTACT ME</a>
</div>
</div>
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/in/glenn-vhalado-86b37b1a0/" target="_blank">LinkedIn</a>
<a class="footer-link" href="https://twitter.com/tissuegalonn" target="_blank">Twitter</a>
<a class="footer-link" href="https://github.com/glennvhalado" target="_blank">Github</a>
<p class="copyright">© 2021 Glenn Vhalado // Made With ❤ at Jakarta.</p>
</div>
</body>
</html>