-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (61 loc) · 2.12 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Poetry Machine: Home</title>
<!--CSS-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!--JS-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
body {
background: url(assets/img/hive.png) no-repeat center fixed;
background-size: cover;
padding-top: 70px;
}
div.absolute {
padding-left: 40%;
}
div #text {
padding-left: 15%;
font-style: normal;
font-size: 40px;
}
.navbar-fixed-top {
min-height: 50px;
font-style: normal;
font-size: 25px;
}
</style>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand">Poetry Machine</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="index.html"><b>Home</b></a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="contact.html">About Us</a></li>
<li class="active"><a href="help.html">Help</a></li>
</ul>
</div>
</nav>
<div class="container">
<img src="assets/img/collage.jpg" alt="LMC Group 4" width="1100" height="550">
<p id="text">
Click the button to receive a random poem!
</p>
<div class="absolute">
<a href="poem.html" class="btn btn-primary btn-lg active" role="button" aria-pressed="true">
Surprise Me!
</a>
</div>
</div>
</body>
</html>