-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (102 loc) · 3.54 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Erika's Page</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"
/>
<link href="https://fonts.googleapis.com/css?family=Halant|Montserrat:700|Satisfy" rel="stylesheet">
<nav id="navbar" class="horizontal-bar">
<a href="#welcome-section">Welcome</a>
<a href="#projects">Projects</a>
<a href="#profile-section">My profile</a>
</nav>
<header>
</header>
<main>
<section id="welcome-section">
<h1>Hello! My name is Erika!</h1>
</section>
<section id="projects">
<h2>My Projects</h2>
<div class="section-content projects">
<div class="project-tile">
<a href="https://codepen.io/erikasegatto/full/QdWPQN" target="_blank">
<h3>Tribute Page</h3>
<figure>
<img src="https://screenshot.codepen.io/1005914.QdWPQN.c812a8f0-8be0-435e-9ea5-dc796c5d3ba1.png" alt="Tribute Page"/>
</figure>
</a>
</div>
<div class="project-tile">
<a href="https://codepen.io/erikasegatto/full/QdWPQN" target="_blank">
<h3>Show the local weather</h3>
<figure>
<img src="https://screenshot.codepen.io/1005914.zpzMYo.527435af-2725-491d-95b9-b2b9958a381f.png" alt="Show the local weather page"/>
</figure>
</a>
</div>
<div class="project-tile">
<a href="https://codepen.io/erikasegatto/full/yLLPjvv" target="_blank">
<h3>Product Landing Page</h3>
<figure>
<img src="https://screenshot.codepen.io/1005914.yLLPjvv.1a313360-d471-4fd4-8296-4280a913dffc.png" alt="Product Landing Page"/>
</figure>
</a>
</div>
<div class="project-tile">
<a href="https://codepen.io/erikasegatto/full/KKKQXbx" target="_blank">
<h3>Technical Documentation Page</h3>
<figure>
<img src="https://screenshot.codepen.io/1005914.KKKQXbx.970beea8-428b-4613-9e63-183ee7259d9a.png" alt="Technical Documentation Page"/>
</figure>
</a>
</div>
<div class="project-tile">
<a href="https://codepen.io/erikasegatto/full/gOOvoqb" target="_blank">
<h3>Form Page</h3>
<figure>
<img src="https://screenshot.codepen.io/1005914.gOOvoqb.c27e68a7-746f-4cbf-b251-c68d47d73b4e.png" alt="Form Page"/>
</figure>
</a>
</div>
<div class="project-tile">
<a href="https://codepen.io/erikasegatto/full/BaaPVpE" target="_blank">
<h3>Javascript Calculator</h3>
<figure>
<img src="https://screenshot.codepen.io/1005914.BaaPVpE.fbd4cc7c-ad79-47f5-a8ff-8afd5e99f7e4.png" alt="Javascript Calculator Page"/>
</figure>
</a>
</div>
</div>
</section>
<section id="profile-section">
<h2>Contact me!</h2>
<div class="contact-links">
<a
id="profile-link"
href="https://github.com/erikaaseg"
target="_blank"
class="btn contact-details"
>
<i class="fab fa-github"></i> GitHub
</a>
<a href="mailto:[email protected]" class="btn contact-details"
>
<i class="fas fa-at"></i> Send a mail
</a>
</div>
</section>
<footer class="horizontal-bar">
<span>© Created by Erika Segatto</span>
</footer>
</main>
</body>
</html>