forked from MonicaFidalgo/my-first-portfolio-final
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
220 lines (212 loc) · 8.12 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="favicon.ico" />
<title>My Cool Portfolio</title>
<!-- meta tags for SEO and social sharing -->
<link
rel="canonical"
href="https://github.com/MonicaFidalgo/my-first-portfolio-final"
/>
<meta name="description" content="My Cool Portfolio" />
<meta name="robots" content="index,follow" />
<meta property="og:title" content="AtomicFox Portfolio" />
<meta property="og:type" content="article" />
<!-- <meta property="og:url" content="your url here" /> -->
<meta property="og:description" content="My Cool Portfolio" />
<!-- import bootstrap library-->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<!-- import font-->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap"
rel="stylesheet"
/>
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="style.css" />
<!-- import the webpage's javascript file -->
<script src="script.js" defer></script>
</head>
<body>
<div class="header-content">
<div class="header-logo">
<img src="assets/logo.png" alt="Logo Image" />
</div>
<nav class="header-navigation">
<ul class="header-links">
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contacts">Contacts</a></li>
</ul>
</nav>
</div>
<!-- the wrapper and content divs set margins and positioning -->
<div class="wrapper">
<div class="container" role="main">
<!-- this is the start of content for our page -->
<section class="row intro">
<div class="col-xs-12 col-sm-12 col-md-6">
<h1 class="title">Hello, my name is Maria Albertina</h1>
<p>
I'm a
<span> Web developer </span>
focused on crafting great web experiences by keeping present UX/UI
best practices
</p>
<a href="" class="button button-primary"> Github </a>
<a href="" class="button button-secondary"> LinkedIn </a>
</div>
<div class="col-sm-12 col-md-6">
<img
src="assets/dev.png"
alt="Draw of a woman sitting at a computer, problably a developer"
class="intro-img"
/>
</div>
</section>
<!-- About -->
<section class="row about" id="about">
<div class="col-12">
<h2 class="heading">About me</h2>
</div>
<div class="col-sm-12 col-lg-6">
<div class="about-img">
<img src="assets/mariaalbertina-webdeveloper.png" alt="" />
</div>
</div>
<div class="col-sm-12 col-lg-6 d-flex align-items-center">
<p class="about-text">
Nisl arcu, scelerisque neque ut. Tincidunt amet, tempor duis
tortor neque auctor dis ipsum. Pretium cras amet odio amet
eleifend id sed cras sed. Aliquet risus posuere aliquet imperdiet
sit.
</p>
</div>
</section>
<!-- Projects -->
<section class="projects" id="projects">
<div class="row">
<div class="col-12">
<h2 class="heading">Projects</h2>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-4 mb-5">
<div class="project-card">
<div class="project-card-image">
<img src="assets/projects/project1.png" />
</div>
<div class="project-card-content">
<h3 class="project-card-title">Project Name</h3>
<p class="project-card-text">
Tincidunt amet, tempor duis tortor neque auctor dis ipsum.
Pretium cras amet odio amet eleifend id sed cras sed.
Aliquet risus posuere aliquet imperdiet sit.
</p>
<a class="button button-secondary-rounded"> View Project </a>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 mb-5">
<div class="project-card">
<div class="project-card-image">
<img src="assets/projects/project2.png" />
</div>
<div class="project-card-content">
<h3 class="project-card-title">Project Name</h3>
<p class="project-card-text">
Nisl arcu, scelerisque neque ut. Tincidunt amet, tempor duis
tortor neque auctor dis ipsum. Pretium cras amet odio amet
eleifend id sed cras sed. Aliquet risus posuere aliquet
imperdiet sit.
</p>
<a class="button button-secondary-rounded"> View Project </a>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 mb-5">
<div class="project-card">
<div class="project-card-image">
<img src="assets/projects/project3.png" />
</div>
<div class="project-card-content">
<h3 class="project-card-title">Project Name</h3>
<p class="project-card-text">
Nisl arcu, scelerisque neque ut. Tincidunt amet, tempor duis
tortor neque auctor dis ipsum. Pretium cras amet odio amet
eleifend id sed cras sed.
</p>
<a class="button button-secondary-rounded"> View Project </a>
</div>
</div>
</div>
</div>
</section>
<section class="contacts" id="contacts">
<div class="row">
<div class="col-12">
<h2 class="heading">Contacts</h2>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8 offset-md-2">
<!-- <p>
💌 Feel free to get in touch with me by
<a href="mailto:vossoemailaqui">Email</a> 💌
</p> -->
<form action="mailto:vossoemailaqui" method="post">
<div class="form-group">
<label for="inputName">Name</label>
<input
type="text"
class="form-control"
id="inputName"
placeholder="Enter your name"
name="name"
/>
</div>
<div class="form-group">
<label for="exampleInputEmail1">Email</label>
<input
type="email"
class="form-control"
id="exampleInputEmail1"
placeholder="Enter email"
name="email"
/>
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Message</label>
<textarea
class="form-control"
id="exampleFormControlTextarea1"
rows="3"
name="text"
></textarea>
</div>
<div class="text-right">
<button type="submit" class="button button-primary">
Submit
</button>
</div>
</form>
</div>
</div>
</section>
</div>
</div>
<!-- footer -->
<footer class="footer">
<div class="text-center">
<a href="https://github.com/MonicaFidalgo" class="social github"></a>
<a href="" class="social instagram"></a>
</div>
</footer>
</body>
</html>