This repository was archived by the owner on Jan 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathgold-template.html
More file actions
67 lines (57 loc) · 2.27 KB
/
gold-template.html
File metadata and controls
67 lines (57 loc) · 2.27 KB
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">
<title>GOLD Bootstrap</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="css/goldbootstrap.css" media="screen">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../bower_components/html5shiv/dist/html5shiv.js"></script>
<script src="../bower_components/respond/dest/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="#" class="navbar-brand">GOLD Boostrap</a>
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav">
<li>
<a href="http://www.goldbootstrap.com" target="_blank">Official Site</a>
</li>
<li>
<a href="https://github.com/iamkevinrhodes/goldbootstrap" target="_blank">Github Project</a>
</li>
<li>
<a href="https://www.behance.net/gallery/22280511/iamKevinRhodescom-Personal-Portfolio-Site" target="_blank">Behance</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="https://getbootstrap.com/" target="_blank">Official Bootstrap Documentation</a></li>
</ul>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row" style="margin-top: 50px;">
<div class="col-gold-lg" style="background-color: blue; height: 600px;">
Hello world!
</div>
<div class="col-gold-sm" style="background-color: yellow; height: 600px;">
Hello world!
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>