-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
137 lines (134 loc) · 4.25 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
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="freeCodeCamp HTML and CSS training projects" />
<title>Responsive Web Design Training</title>
<link href="css/index_styles.css" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" />
</head>
<body>
<header>
<h1>Responsive Web Design Training</h1>
<nav class="social-icons">
<ul>
<li><a href="mailto:[email protected]"><i class="fas fa-at"></i></a></li>
<li><a href="https://github.com/nanipumpkin/fc_html"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/mariannecosta"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</nav>
<div class="description">
<p>The following projects were developed during my training at <a href="https://www.freecodecamp.org/learn" class="fcc">freeCodeCamp</a></p>
</div>
</header>
<main>
<a href="html/cat_project.html" class="project">
<button class="frame">Basic HTML<br />Cat Photo App</button>
</a>
<a href="html/coffee_project.html" class="project">
<button class="frame">
Basic CSS<br />Cafe Menu
</button>
</a>
<a href="html/color_markers.html" class="project">
<button class="frame">
CSS Colors<br />Colored Markers
</button>
</a>
<a href="html/reg_form.html" class="project">
<button class="frame">
HTML Forms<br />Registration Form
</button>
</a>
<a href="html/survey_form.html" class="project">
<button class="frame">
Certification Project<br />Survey Form
</button>
</a>
<a href="html/rothko_project.html" class="project">
<button class="frame">
CSS Box Model<br />Rothko Painting
</button>
</a>
<a href="html/flexbox_gallery.html" class="project">
<button class="frame">
CSS Flexbox<br />Cat Photo Gallery
</button>
</a>
<a href="html/nutrition_label.html" class="project">
<button class="frame">
Typography<br />Nutrition Label
</button>
</a>
<a href="html/accessib_quiz.html" class="project">
<button class="frame">
Accessibility<br />Quiz
</button>
</a>
<a href="html/timeline.html" class="project">
<button class="frame">
Certification Project<br />Timeline
</button>
</a>
<a href="html/balance_sheet.html" class="project">
<button class="frame">
CSS Pseudo Selectors<br />Balance Sheet
</button>
</a>
<a href="html/picasso_painting.html" class="project">
<button class="frame">
Intermediate CSS<br />Picasso's Three Musicians
</button>
</a>
<a href="html/piano.html" class="project">
<button class="frame">
Responsive Web Design<br />Piano
</button>
</a>
<a href="html/tech_doc.html" class="project">
<button class="frame">
Certification Project<br />Technical Documentation
</button>
</a>
<a href="html/city_skyline.html" class="project">
<button class="frame">
CSS Variables<br />City Skyline
</button>
</a>
<a href="html/magazine.html" class="project">
<button class="frame">
CSS Grid<br />Magazine
</button>
</a>
<a href="html/landing_page.html" class="project">
<button class="frame">
Certification Project<br />Landing Page
</button>
</a>
<a href="html/ferris_wheel.html" class="project">
<button class="frame">
CSS Animation<br />Ferris Wheel
</button>
</a>
<a href="html/penguin.html" class="project">
<button class="frame">
CSS Transforms<br />Penguin
</button>
</a>
<a href="html/portfolio.html" class="project">
<button class="frame">
Certification Project<br />Portfolio Page
</button>
</a>
<h3>Back to my <a href="https://github.com/nanipumpkin/fc_html" class="git">GitHub Repo</a></h3>
</main>
<footer>
<address>
<a href="https://www.linkedin.com/in/mariannecosta">Nani Avalone</a><br />
Cachoeira do Sul, RS<br />
Brazil
</address>
</footer>
</body>
</html>