-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (118 loc) · 3.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Alejandro Lubos - Portfolio</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<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=Raleway:[email protected]&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link id="theme" rel="stylesheet" />
<script src="js/theme.js"></script>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<header class="page-header">
<nav class="page-header__item">
<ul role="menubar" class="navigation-list">
<li role="presentation">
<img
class="social-media__item"
src="img/light.svg"
onclick="toggleTheme()"
width="32"
height="32"
alt="toggle theme icon"
/>
</li>
<li role="presentation">
<a href="index.html" role="menuitem" class="navigation-list__item"
>Home</a
>
</li>
<li role="presentation">
<a href="work.html" role="menuitem" class="navigation-list__item"
>Work</a
>
</li>
<li role="presentation">
<a href="about.html" role="menuitem" class="navigation-list__item"
>About</a
>
</li>
<li role="presentation">
<a href="contact.html" role="menuitem" class="navigation-list__item"
>Contact</a
>
</li>
</ul>
</nav>
</header>
<main class="profile">
<img
class="profile__portrait"
src="img/photo_profile.jpg"
alt="A photograph of Alejandro Lubos"
/>
<div class="profile__text-container">
<h1>
Hi, my name is<br />
Alejandro Lubos
</h1>
<p>
A caring man, husband, father <br />
and an eager and dedicated <br />full-stack JavaScript Developer with
sound analytical & creative skills
</p>
<a href="work.html"><strong>Check out some of my code</strong></a>
</div>
</main>
<footer class="page-footer">
<p>Find me on</p>
<div class="social-media">
<a href="https://twitter.com/alelubos" target="_blank">
<img
class="social-media__item"
src="img/twitter.svg"
width="32"
height="32"
alt="Twitter"
/></a>
<a href="https://github.com/alelubos" target="_blank"
><img
class="social-media__item"
src="img/github.svg"
width="32"
height="32"
alt="Github"
/></a>
<a href="https://www.linkedin.com/in/lubos-alejandro" target="_blank">
<img
class="social-media__item"
src="img/linkedin.svg"
width="32"
height="32"
alt="LinkedIn"
/>
</a>
</div>
</footer>
<script src="js/tota11y.min.js"></script>
<script src="js/toggle-script.js"></script>
<script>
if (!sessionStorage.getItem('theme'))
sessionStorage.setItem('theme', 'dark');
</script>
</body>
</html>