Skip to content

Commit 388eee3

Browse files
committed
Reformatting index.html
1 parent 4051fd4 commit 388eee3

File tree

1 file changed

+96
-1
lines changed

1 file changed

+96
-1
lines changed

index.html

+96-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,96 @@
1-
Hello World from index.html
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>My First Bitstarter</title>
6+
<link type="text/css" rel="stylesheet" href="https://d396qusza40orc.cloudfront.net/startup%2Fcode%2Fbootstrap-2.3.2.css">
7+
<style type="text/css">
8+
body {
9+
padding-top: 20px;
10+
padding-bottom: 40px;
11+
}
12+
.container {
13+
width: 960px;
14+
}
15+
p.lead {
16+
padding-top: 15px;
17+
}
18+
.navigation, .pitch, .section1, .section2, .faq, .footer {
19+
padding: 10px 0px 10px 0px;
20+
}
21+
.video, .thermometer, .order, .social {
22+
border: 1px dotted;
23+
text-align: center;
24+
}
25+
.video {
26+
/* Internal borders have 1px width, thus need to add 4 x 1px to 120px. */
27+
height: 124px;
28+
line-height: 124px;
29+
}
30+
.thermometer, .order, .social {
31+
/* line-height to vertically center: http://phrogz.net/css/vertical-align/index.html */
32+
height: 40px;
33+
line-height: 40px;
34+
}
35+
div.row {
36+
border: 1px solid;
37+
}
38+
</style>
39+
</head>
40+
<body>
41+
<div class="container">
42+
<div class="row navigation">
43+
<div class="span2 logo">
44+
Logo
45+
</div>
46+
<div class="span6 blank">
47+
Blank
48+
</div>
49+
<div class="span4 about">
50+
About
51+
</div>
52+
</div>
53+
<div class="row heading">
54+
<div class="span12">
55+
<h1>Bitstarter Title</h1>
56+
</div>
57+
</div>
58+
<div class="row subheading">
59+
<div class="span12">
60+
<p class="lead">This is my first bitstarter project.</p>
61+
</div>
62+
</div>
63+
<div class="row pitch">
64+
<div class="span6 video">
65+
Video
66+
</div>
67+
<div class="span6">
68+
<div class="thermometer">
69+
Thermometer
70+
</div>
71+
<div class="order">
72+
Order
73+
</div>
74+
<div class="social">
75+
Social
76+
</div>
77+
</div>
78+
</div>
79+
<div class="row section1">
80+
<div class="span12">
81+
Marketing Section 1
82+
</div>
83+
</div>
84+
<div class="row faq">
85+
<div class="span12">
86+
FAQ
87+
</div>
88+
</div>
89+
<div class="row footer">
90+
<div class="span12">
91+
Footer
92+
</div>
93+
</div>
94+
</div>
95+
</body>
96+
</html>

0 commit comments

Comments
 (0)