-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (120 loc) · 3.52 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
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Daniela's Web Portfolio</title>
</head>
<body>
<script type="text/javascript" src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<link rel="stylesheet" href="estilo.css" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Fredoka+One&display=swap" rel="stylesheet">
<link
href="https://fonts.googleapis.com/css?family=Raleway:700&display=swap"
rel="stylesheet"
/>
<nav id="navbar" class="nav">
<ul class="nav-list">
<li>
<a href="#welcome-section">About</a>
</li>
<li>
<a href="#projects">Portfolio</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
<section id="welcome-section" class="welcome-section">
<h1>< Daniela ></h1>
<p>>> Web Portfolio <<</p>
<br>
<p class="welcome-info">My name is Daniela and I'm currently training to getting into IT industry (QA, testing and Automation specifically). I started self-studying HTML5, CSS and JavaScript and taking testing courses at <a href="https://www.educacionit.com/" target="_blank">Educación IT</a> at the same time. These are my projects for <a href="https://www.freeCodeCamp.org/" target="_blank">freeCodeCamp</a>'s Responsive Web Design Challenges!</p>
</section>
<section id="projects" class="projects-section">
<h2 class="projects-section-header">>> My Portfolio <<</h2>
<div class="project-grid">
<a
href="https://codepen.io/Daniela-Sachetti/full/gObJMJE"
target="_blank"
class="project project-tile"
>
<img
class="project-image"
src="https://i.ibb.co/zFyYXFF/tribute-page.jpg"
alt="project"
/>
<p class="project-title">
< Tribute Page >
</p>
</a>
<a
href="https://codepen.io/Daniela-Sachetti/full/BayewJw"
target="_blank"
class="project project-tile"
>
<img
class="project-image"
src="https://i.ibb.co/N9jtCg7/survey-form.jpg"
alt="project"
/>
<p class="project-title">
< Survey Form >
</p>
</a>
<a
href="https://codepen.io/Daniela-Sachetti/full/mdJVpeN"
target="_blank"
class="project project-tile"
>
<img
class="project-image"
src="https://i.ibb.co/n6pgbfs/landing-page.jpg"
alt="project"
/>
<p class="project-title">
< Landing Page >
</p>
</a>
<a
href="https://codepen.io/Daniela-Sachetti/full/KKpVLXG"
target="_blank"
class="project project-tile"
>
<img
class="project-image"
src="https://i.ibb.co/PCXrhhF/technical-documentation.jpg"
alt="project"
/>
<p class="project-title">
< Technical Documentation Page >
</p>
</a>
</div>
</section>
<section id="contact" class="contact-section">
<div class="contact-section-header">
<h2>>> Contact Me <<</h2>
</div>
<div class="contact-links">
<a
id="profile-link"
href="https://www.freecodecamp.org/fcc6f7d5e15-9df4-4cfe-a372-206c646f613d"
target="_blank"
class="btn contact-details"
><i class="fab fa-github"></i>FreeCodeCamp</a
>
<a href="mailto:mdsachetti@gmail.com" class="btn contact-details"
><i class="fas fa-at"></i>E-mail</a
>
<a href="https://www.linkedin.com/in/daniela-sachetti/" target="_blank" class="btn contact-details"
><i class="fas fa-mobile-alt"></i>LinkedIn</a
>
</div>
</section>
</body>
<footer>
<p>
© Created by Daniela
</p>
</footer>