-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
56 lines (50 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- The title of the page -->
<title>My First Website</title>
<!-- Metadata nothing special just add in your own name -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="My First Website">
<meta name="author" content="Jonathan Gillett">
<!-- CSS styles provided by boostrap -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<!-- Basic CSS to make the container not overlap with the navbar -->
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements, well get to this later if we have time! -->
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<![endif]-->
</head>
<!-- The main body for your html markup -->
<body>
<!-- The top navbar, this is just a twitter bootstrap template -->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#">My First Website</a>
</div>
</div>
</div>
<!-- Another bootstrap template, provides a container for the main meat of your website -->
<div class="container">
<!-- The title and a paragraph for your first website -->
<h1>My First Website</h1>
<p>
Thank you for visiting <strong>My First Website</strong> soon I will be a web development guru
able to master the power of the <strong>CLOUD</strong> like Zeus himself!
</p>
</div> <!-- /container -->
<!-- Javascript
================================================== -->
<!-- Remember to have it placed at the end of the document so the pages load faster -->
<script src="js/jquery-1.9.1.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>