-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-intro.html
More file actions
168 lines (152 loc) · 4.57 KB
/
Copy pathgit-intro.html
File metadata and controls
168 lines (152 loc) · 4.57 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/main.css">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Git Intro</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">One more separated link</a></li>
</ul>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<h1>Git Intro </h1>
<div class="jumbotron">
<h1>Welcome to .Net</h1>
</div>
<hr>
<div class="col-md-12">
<h1>Tables</h1>
<hr>
<div class="row">
<div class="col-md-6">
<table class="table table-striped">
<thead>
<th>First Name</th>
<th>Last Name</th>
</thead>
<tbody>
<tr>
<td>Donald</td>
<td>Trump</td>
</tr>
<tr>
<td>Hillary</td>
<td>Clinton</td>
</tr>
<tr>
<td>Gary</td>
<td>Johnson</td>
</tr>
</tbody>
</table>
</div>
<!-- <div class="col-md-6">
<table class="table table-striped">
<thead>
<th>Hobbies</th>
<th>Birthplace</th>
</thead>
</table>
</div> -->
</div>
</div>
<div class="row"> <!-- break div -->
<div class="col-md-12">
</div>
</div>
<div class="col-md-12">
<h1>Three Things About Myself</h1>
<hr>
<div class="col-md-4">
<img src="assets/3ThingsFantasy.png" class="img-responsive">
<h3>Fantasy Football</h3>
<p>Fantasy football is more important to me than it should be. My team was awful last year, but I'll win this year.</p>
</div>
<div class="col-md-4">
<img src="assets/3ThingsGames.jpg" class="img-responsive">
<h3>Games</h3>
<p>I play Starcraft. Other games are for casuals.</p>
</div>
<div class="col-md-4">
<img src="assets/TrumpBClinton.png" class="img-responsive">
<h3>Politics</h3>
<p>I love to follow politics, but I hate the current state of politics.</p>
</div>
</div>
<div class="row"> <!-- break div -->
<div class="col-md-12">
</div>
</div>
<div class="col-md-12">
<h1>Three Things I Want to Get Out of Class</h1>
<hr>
<div class="col-md-4">
<div id="things1"></div>
</div>
<div class="col-md-4">
<h3><div id="things2"></div></h3>
</div>
<div class="col-md-4">
<h3><div id="things3"></div></h3>
</div>
</div>
<div class="row"> <!-- break div -->
<div class="col-md-12">
</div>
</div>
<h1>Forms with bootstrap</h1>
<hr>
<form>
<div class="col-md-4">
<div class="form-group">
<label>First Name</label>
<input type="name" class="form-control" placeholder="First Name">
</div>
<div class="form-group">
<label>Last Name</label>
<input type="name" class="form-control" placeholder="Last Name">
</div>
<div class="form-group">
<label>Email</label>
<input type="email" class="form-control" placeholder="Email">
</div>
<div class="form-group">
<label class="password">Password</label>
<input type="password" class="form-control" placeholder="Password">
</div>
</div>
</form>
<div id="message"></div>
<div id="info"></div>
<br><br>
<script type="text/javascript" src="assets/script.js"></script>
</body>
</html>