-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (36 loc) · 1.68 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
<!-- ALL HTML documents must start with this declaration
- Tells the browser that this is an HTML 5 version
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>John Lloyd | Web Developer Portfolio</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Roboto&display=swap" rel="stylesheet">
<!-- Bootstrap Link -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- External CSS link -->
<link rel="stylesheet" type="text/css" href="./index.css">
</head>
<body>
<!--
-div creates a container for our layout
- class is an attribute to name our div
-->
<div class="container">
<!-- id is an attribute to name a tag uniquely -->
<section class="text-center mt-5" id="landing">
<h1>Full Stack Web Developer</h1>
<p>Hi! My name is Lloyd and I love building things from scratch</p>
<img src="./images/legaspi.png" id="profile" class="img-fluid">
<a href="mailto:[email protected]" class="btn btn-dark btn-lg mt-3">Let's Work Together!</a>
</section>
</div>
<!-- Bootstrap Script -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>