-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 1.66 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 lang="en">
<head>
<title>Vert's Website</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<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=Iceberg&display=swap" rel="stylesheet">
<style>
body {
background-image: url("giphy.gif");
font-family: 'Iceberg', cursive;
font-size: xx-large;
}
.container {
color: black;
-webkit-text-stroke: 1px white;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Vert's Website</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="https://github.com/V3RT-ctrl" target="_blank">GitHub</a></li>
<li><a href="https://www.linkedin.com/in/michael-gilgallon-93956420b/" target="_blank">LinkedIn</a></li>
<li><a href="https://soundcloud.com/inaudible-screaming" target="_blank">SoundCloud</a></li>
</ul>
</div>
</nav>
<div class="container">
<h3>Welcome To My Website!!</h3>
<p>I'm a college student interested in programming and music. Click my links for information!</p>
</div>
</body>
</html>