-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathwe_do.html
More file actions
65 lines (59 loc) · 2.46 KB
/
we_do.html
File metadata and controls
65 lines (59 loc) · 2.46 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
<!DOCTYPE html>
<html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="./css/we_do.css">
</head>
<body>
<div id="header">
<h1>Cats</h1>
<p>This is my cats gallery. I love cats!</p>
</div>
<div class="container">
<div class="row">
<div class="col-xs-1">
<img class="img-responsive" src="./img/cat_1.jpg">
</div>
<div class="col-xs-1">
<img class="img-responsive" src="./img/cat_2.jpg">
</div>
<div class="col-xs-1">
<img class="img-responsive" src="./img/cat_3.jpg">
</div>
<div class="col-xs-1">
<img class="img-responsive" src="./img/cat_4.jpg">
</div>
<div class="col-xs-1">
<img class="img-responsive" src="./img/cat_5.jpg">
</div>
<div class="col-xs-1">
<img class="img-responsive" src="./img/cat_6.jpg">
</div>
<div class="col-xs-1">
<img class="img-responsive" src="./img/cat_7.jpg">
</div>
<div class="col-xs-1">
<img class="img-responsive" src="./img/cat_8.jpg">
</div>
<div class="col-xs-1">
<img class="img-responsive" src="./img/cat_9.jpg">
</div>
<div class="col-xs-1">
<img class="img-responsive" src="./img/cat_10.jpg">
</div>
<div class="col-xs-1">
<img class="img-responsive" src="./img/cat_11.jpg">
</div>
<div class="col-xs-1">
<img class="img-responsive" src="./img/cat_12.jpg">
</div>
</div>
</div>
</body>
</html>