forked from Migracode-Barcelona/htmlcss-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (60 loc) · 1.89 KB
/
index.html
File metadata and controls
61 lines (60 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<header class="header">
<img class="profilePic" src="img/foto cv.jpg" alt="angel picture">
<h1 class="headerH1">
My Portfolio Project
</h1>
<p class="headerText">With the help of Migracode I will create the best portfolio ever. This is just the start of my new future.</p>
</header>
<main>
<section class="projects">
<div>
<div class="project">
<h3>Project 1</h3>
<article>Sumary</article>
<a href="#">Link</a>
</div>
<br class="projectSpacing">
<div class="project">
<h3>Project 2</h3>
<article>Sumary</article>
<a href="#">Link</a>
</div>
<br class="projectSpacing">
<div class="project">
<h3>Project 3</h3>
<article>Sumary</article>
<a href="#">Link</a>
</div>
</div>
</section>
</main>
<footer class="footer">
<h3>Contact</h3>
<ul>
<li>email: [email protected]</li>
<li><a href="https://www.linkedin.com/in/angel-luis-matos-lopez-9726a8aa/" target="_blank">LikedIn</a></li>
<li><a href="https://github.com/REALcuba" target="_blank">GitHub</a></li>
</ul>
</footer>
</body>
</html>