forked from buckyroberts/Source-Code-from-Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
144 lines (115 loc) · 5.36 KB
/
index.html
File metadata and controls
144 lines (115 loc) · 5.36 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<title>thenewboston</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<!-- Custom CSS -->
<link href="landing.css" rel="stylesheet">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- This is code from the previous tutorial with the following changes -->
<!-- navbar-fixed-top topnav -->
<nav class="navbar navbar-default navbar-fixed-top topnav">
<!-- topnav -->
<div class="container topnav">
<!-- Logo -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#mainNavBar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand">THENEWBOSTON</a>
</div>
<!-- Menu Items -->
<div class="collapse navbar-collapse" id="mainNavBar">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Banner header section -->
<div class="intro-banner">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="intro-inner">
<h1>Welcome to thenewboston</h1>
<h3>Social Network for Programmers</h3>
<hr class="intro-divider">
<ul class="list-inline intro-social-buttons">
<li>
<a href="#" class="btn btn-default btn-lg">
<i class="fa fa-comment fa-fw"></i>
<span class="button-title">Forum</span>
</a>
</li>
<li>
<a href="#" class="btn btn-default btn-lg">
<i class="fa fa-user fa-fw"></i>
<span class="button-title">Profile</span>
</a>
</li>
<li>
<a href="#" class="btn btn-default btn-lg">
<i class="fa fa-youtube-play fa-fw"></i>
<span class="button-title">Videos</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Content row 1 -->
<div class="content-section-a">
<div class="container">
<div class="row">
<div class="col-lg-5 col-sm-6">
<hr class="section-heading-spacer">
<!-- clearfix makes it so elements are not side by side -->
<div class="clearfix"></div>
<h2 class="section-heading">Write and Drink Tea with Sweaters</h2>
<p class="lead">
A special thanks to <a href="#">Death to the Stock Photo</a> for providing the photographs that
you see in this template. Visit their website to become a member.
</p>
</div>
<div class="col-lg-5 col-lg-offset-2 col-sm-6">
<img class="img-responsive img-rounded" src="https://snap-photos.s3.amazonaws.com/img-thumbs/960w/8Y0EDX4VP9.jpg">
</div>
</div>
</div>
</div>
<!-- Content row 2 -->
<div class="content-section-b">
<div class="container">
<div class="row">
<div class="col-lg-5 col-lg-offset-1 col-sm-push-6 col-sm-6">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading">This Girl is Hot</h2>
<p class="lead">
A special thanks to <a href="#">Death to the Stock Photo</a> for providing the photographs that
you see in this template. Visit their website to become a member.
</p>
</div>
<div class="col-lg-5 col-sm-pull-6 col-sm-6">
<img class="img-responsive img-rounded" src="https://snap-photos.s3.amazonaws.com/img-thumbs/960w/EH83G44K4G.jpg">
</div>
</div>
</div>
</div>
</body>
</html>