-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (69 loc) · 2.73 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
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
<!DOCTYPE html>
<!-- html = hyper text markup language -->
<html lang="en-GB">
<head>
<title>My first webpage </title>
<!--<link rel='stylesheet' type='text/css' href='Style.css'>-->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-2">menu </div>
<div class="col-md-8"><!-- this is the heading section -->
<center> <h1 class="myHeading"> Hello World! </h1> </center>
<h1> The first section </h1>
<br/>
<h2>First Webpage</h2>
<!-- this is the text section -->
<font face="verdana" size="7" color="brown"> The quick brown fox </font> jumped over the lazy dog
<br/>
<!-- the anchor tags -->
<!-- href = hyperlink reference -->
<a href="http://www.google.com" target="_new"> GO TO GOOGLE </a>
<br />
<a href="mailto:dummy@gmail.com"> EMAIL ME!! </a>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<img src="imgs/cat.jpg" alt="my cat" class="img-circle" height="300">
<table class="table table-bordered">
<tr>
<td class="active"> active</td>
<td class="success">success</td>
<td class="warning">warning</td>
<td class="danger">danger</td>
<td class="info">info</td>
</tr>
<tr class="active"><td colspan="5">active</td></tr>
<tr class="success"><td colspan="5">success</td></tr>
<tr class="warning"><td colspan="5">warning</td></tr>
<tr class="danger"><td colspan="5">danger</td></tr>
<tr class="info"><td colspan="5">info</td></tr>
</table>
<p class="bg-primary">this is the code first training</p>
<a class="btn btn-primary btn-lg" href="#" role="button">Link</a>
<button class="btn btn-success btn-lg" type="submit">Button</button>
<input class="btn btn-info" type="button" value="Input">
<input class="btn btn-warning" type="submit" value="Submit">
<button type="button" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-star" aria-hidden="true"> My star button</span>
</button>
</div><!-- end content-->
<div class="col-md-2">other </div>
</div><!-- end row -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</div><!-- end container -->
</body>
</html>