-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew.html
More file actions
34 lines (32 loc) · 1.09 KB
/
new.html
File metadata and controls
34 lines (32 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap Shenanigans</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container"> <!--This one is more noticably responsive; "container" does this-->
<div class="row" style="background-color: #dfdfdf">
<div class="col-md-2" style="border: solid 3px black;">
<h1>So whadddup?</h1>
</div>
<div class="col-md-4 col-md-offset-6" style="border: solid 3px black;">
<h1>So whadddup?</h1>
</div>
</div>
</div>
</br></br>
<div class="container-fluid">
<div class="row" style="background-color: #dfdfdf">
<div class="col-md-2" style="border: solid 3px black;">
<h1>So whadddup?</h1>
</div>
<div class="col-md-4 col-md-offset-6" style="border: solid 3px black;">
<h1>So whadddup?</h1>
</div>
</div>
</div>
</body>
</html>