-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (62 loc) · 2.05 KB
/
index.html
File metadata and controls
65 lines (62 loc) · 2.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style-index.css">
<title>FedeMartinezDev</title>
</head>
<body>
<nav>
<ul class="nav-list">
<li class="active">
<a href="index.html" aria-current="page">About Me</a>
</li>
<li>
<a href="professional.html">Professional Career</a>
</li>
<li>
<a href="academic.html">Road to Software Engineering</a>
</li>
<li>
<a href="personal.html">Non-Professional Activities</a>
</li>
</ul>
</nav>
<main class="main-container">
<h1>Hello and welcome 👋! I am Fede!</h1>
<p>A seasoned C++ Software Engineer. Trying to learn Web Development. Working on understanding the guts of
Unreal Engine. Doing sports and eating healthy.</p>
<div class="index-container">
<div class="index-container__cell">
<img class="img-feature" src="images/me-cpp.png" alt="">
</div>
<div class="index-container__cell">
<img src="images/me-git.png" alt="" class="img-feature">
</div>
<div class="index-container__cell">
<img src="images/me-bazel.png" alt="" class="img-feature">
</div>
<div class="index-container__cell">
<img src="images/me-ue.png" alt="" class="img-feature">
</div>
<div class="index-container__cell">
<img class="img-person" src="images/me.jpeg" alt="">
</div>
<div class="index-container__cell">
<img src="images/me-js.png" alt="" class="img-feature">
</div>
<div class="index-container__cell">
<img src="images/me-python.png" alt="" class="img-feature">
</div>
<div class="index-container__cell">
<img src="images/me-html.png" alt="" class="img-feature">
</div>
<div class="index-container__cell">
<img src="images/me-css.png" alt="" class="img-feature">
</div>
</div>
</main>
</body>
</html>