-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home</title>
</head>
<body id="body">
<nav class="nav justify-content-center">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="about.html">About</a>
<a class="nav-link" href="contact.html">Contact</a>
<a class="nav-link" href="resources.html">Resources</a>
</nav>
<div id="main-title">
Lucas Albuquerque Zanin
</div>
<div id="sub-title">
<small class="text-muted">Welcome to my webpage</small>
</div>
<div class="container">
<div class="row">
<div style="border-left:none" class="col-sm-4">
<h3>About</h3>
<div class="content">
My name is Lucas Zanin and I want to become a webdeveloper.
</div>
<a id="button" class="btn btn-primary btn-sm" href="about.html" role="button">Learn more</a>
</div>
<div class="col-sm-4">
<h3>Contact</h3>
<div class="content">
Contact me via e-mail, linked-in or follow me on github.
</div>
<a id="button" class="btn btn-primary btn-sm" href="contact.html" role="button">Learn more</a>
</div>
<div class="col-sm-4">
<h3>Resources</h3>
<div class="content">
The resources where I have learned several topics so far.
</div>
<a id="button" class="btn btn-primary btn-sm" href="resources.html" role="button">Learn more</a>
</div>
</div>
</div>
</body>
</html>