-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (91 loc) · 4.49 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
<!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" />
<meta name="author" content="Edward Gulmayo" />
<meta name="description" content="Welcome to my personal website!" />
<title>Personal Website</title>
<!-- preconnects -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png" />
<link rel="manifest" href="site.webmanifest" />
<!-- preloads -->
<link rel="preload" as="image" type="image/svg+xml" href="images/ocean-live-675.svg" />
<link rel="preload" as="style"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap" />
<link rel="preload" as="image" type="image/svg+xml" href="images/ocean-live-350.svg" />
<!-- styles -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap" />
<link rel="stylesheet" href="css/base.css" />
<link rel="stylesheet" href="css/utilities.css" />
<link rel="stylesheet" href="css/layout.css" />
<link rel="stylesheet" href="css/components.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header class="layout primary-header">
<nav class="primary-nav">
<ul>
<li><a href="index.html" data-current-link>Home</a></li>
<li><a href="pages/profile/index.html">Profile</a></li>
<li><a href="pages/gallery/index.html">Gallery</a></li>
</ul>
</nav>
<section class="landing">
<h1>My Personal Website</h1>
</section>
<div class="full-width" style="height:286px;overflow:hidden;transform:rotate(180deg);">
<div
style="height:675px;background:url('images/ocean-live-675.svg') repeat-x center;transform:rotate(180deg);">
</div>
</div>
</header>
<main class="primary-main">
<div class="layout main-content">
<section>
<h2><q>Hello, I am Edward. An aspiring <br> full stack developer.</q></h2>
<p>I am a second-year student taking a bachelor’s degree in information technology. I am a person who is
full of passion when it comes to doing the things that I love to do. I always make sure that I give
my
best when I do something.</p>
</section>
<section class="full-width-content section-highlight">
<h2>Profile</h2>
<p>Here, you'll find personal information about me, including ways to reach out. As I embark on the
journey to become a full stack developer.</p>
<p>I invite you to connect with me as I navigate the exciting path towards becoming a proficient full
stack developer.</p>
<a class="button" href="pages/profile/index.html" role="button">View Profile</a>
</section>
<section>
<h2>Gallery</h2>
<p>Step into my Gallery – a curated collection of moments that paint a vibrant picture of my life,
featuring snapshots of family, shared adventures, and the cherished moments with my partner.</p>
<a class="button" href="pages/gallery/index.html" role="button">View Gallery</a>
</section>
</div>
</main>
<footer class="layout primary-footer">
<div class="full-width" style="height:145px;overflow:hidden;">
<div style="height:350px;background:url('images/ocean-live-350.svg') repeat-x center;">
</div>
</div>
<div>
<section class="contact-section">
<h2>Contact me</h2>
<ul>
<li><a href="tel:+639286211252">(+63) 928 621 1252</a></li>
<li><a href="mailto:astaltin@gmail.com">astaltin@gmail.com</a></li>
</ul>
</section>
<p class="copyright-text">© Edward Gulmayo</p>
</div>
</footer>
</body>
</html>