-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (54 loc) · 2.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Gabriel Rocha - Fullstack Developer</title>
<link rel="shortcut icon" href="./img/favicon-32x32.png" type="image/png">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="./css/style.production.css">
</head>
<body>
<!-- Header including the logo and the main navigation -->
<header class="page-header">
<img src="./img/gabriel_dev_logo_site.png" alt="logo" class="page-header__item">
<nav class="main-navigation page-header__item">
<ul role="menubar" class="navigation-list">
<li role="presentation">
<a href="index.html" role="menuitem" class="navigation-list__item navigation-list__item--active">Home</a>
</li>
<li role="presentation">
<a href="./pages/about.html" role="menuitem" class="navigation-list__item">About me</a>
</li>
<li role="presentation">
<a href="./pages/projects.html" role="menuitem" class="navigation-list__item navigation-list__item">Projects</a>
</li>
<li role="presentation">
<a href="/pages/contact.html" role="menuitem" class="navigation-list__item">Contact</a>
</li>
</ul>
</nav>
</header>
<main>
<div class="profile">
<img src="./img/gabriel_rocha_1x1.png" class="profile__portrait" alt="Gabriel Rocha Portrait">
<h1 class="title">Welcome!</h1>
<p>
My name is Gabriel Rocha. I am a <span>web</span> developer living in Germany.
</p>
<a href="https://github.com/rochagbriel?tab=repositories" target="_blank">Check out some of my code</a>
</div>
</main>
<!-- Footer with links to social media profiles -->
<footer class="page-footer">
<p>Find me on</p>
<div class="social-media">
<a href="https://github.com/rochagbriel" target="_blank"><img src="./img/1298743_github_git_logo_social_icon.svg" alt="Github"></a>
<a href="https://www.linkedin.com/in/gabrielrochagois" target="_blank"><img src="./img/317750_linkedin_icon.svg" alt="LinkedIn"></a>
</div>
</footer>
<!-- <script src="/scripts/tota11y.min.js"></script> -->
</body>
</html>