-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.41 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
<!DOCTYPE html>
<html>
<head>
<title>Melben | Web Developer Portfolio</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Gogel 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">
<!-- External css -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- Comment UwU -->
<!-- div creates a wrapper -->
<!-- class is used to name div -->
<div class="container-fluid">
<!-- id is used to name tags uniquely -->
<section class="text-center img-fluid mt-5" id="landing">
<h1>Full Stack Web Developer</h1>
<p>Hi! My name is Melben and I love building things from scratch <3</p>
<img src="images/Pic3.png" id="profile">
<a href="mailto:[email protected]" class="btn btn-success btn-lg mt-3">Let's Work Together! >w<</a>
</section>
</div>
<!-- Bootstrap Bundle -->
<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>