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
64 lines (57 loc) · 1.89 KB
/
index.html
File metadata and controls
64 lines (57 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
62
63
64
<!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>
<h1>MATTHEW'S PORTFOLIO</h1>
<h3>about your self</h3>
</header>
<main>
<section class="section">
<div>
<img src="" alt="">
<p><span>Description:</span> This project involves</p>
<a href="" target="_blank">the project</a>
</div>
</section>
<section class="section">
<div>
<img src="" alt="">
<p><span>Description:</span> This project involves</p>
<a href="" target="_blank">the project</a>
</div>
</section>
<section class="section">
<div>
<img src="" alt="">
<p><span>Description:</span> This project involves</p>
<a href="" target="_blank">the project</a>
</div>
</section>
</main>
<footer>
<div>
<p>Contact me on</p>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/LinkedIn_logo_initials.png/800px-LinkedIn_logo_initials.png" width="40" alt="">
<img src="https://cdn3.iconfinder.com/data/icons/inficons/512/github.png" width="40" alt="">
<img src="https://www.facebook.com/images/fb_icon_325x325.png" width="40" alt="">
</div>
</footer>
</body>
</html>