-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (36 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Server Index</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.1/css/bootstrap.min.css" integrity="sha384-VCmXjywReHh4PwowAiWNagnWcLhlEJLA5buUprzK8rxFgeH0kww/aWY76TfkUoSX" crossorigin="anonymous">
</head>
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-dark">
<a class="navbar-brand text-light bg-dark" href="#index">killwilliam</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-nav">
<a class="nav-link active text-light bg-dark" href="index">Home <span class="sr-only">(current)</span></a>
<a class="nav-link text-light bg-dark" href="about">About</a>
<a class="nav-link text-light bg-dark" href="web">Portfolio</a>
</div>
</div>
</nav>
</header>
<div class="container">
<body>
<div class="jumbotron">
<h1 class="display-4">Hello, world!</h1>
<p class="lead">This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
<hr class="my-4">
<p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
<a class="btn btn-primary btn-lg" href="about" role="button">About me</a>
</div>
<span class="d-block p-2 bg-primary text-white">Trying to add a little spunk to the funk yo</span>
<span class="d-block p-2 bg-dark text-white">This be the D block, talk talk talk </span>
<body>
</body>
</html>