-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (55 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My landing page</title>
<link rel="shortcut icon" href="data:image/x-icon;" type="image/x-icon">
<!-- We need this line below for responsiveness! -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- code a Hero / Banner section -->
<div class="banner" style="background-image: url(images/background.png);">
<div>
<h1>Luís Domingues</h1>
<p>I ❤ Code.</p>
<a class="btn btn-flat" href="#">Lets talk</a>
</div>
</div>
<!-- code a "How it works" section -->
<div class="container">
<h2>More about me:</h2>
<div class="cards">
<div class="card">
<img src="images/apply.svg" alt="">
<h3>Curriculum Vitae</h3>
<p>Look at my work experience</p>
</div>
<div class="card">
<img src="images/learn.svg" alt="">
<h3>Portfolio</h3>
<p>I can make great sites</p>
</div>
<div class="card">
<img src="images/product.svg" alt="">
<h3>Current Projects</h3>
<p>Projects on production</p>
</div>
</div>
</div>
<!-- code a footer -->
<div class="footer">
<div class="footer-links">
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
<div class="footer-text">
<p>I am learning how to code</p>
</div>
</div>
</body>
</html>