-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomDemo.html
40 lines (37 loc) · 1.36 KB
/
domDemo.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>
DOM Demo
</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="container">
<h1>Welcome to my DOM demo</h1>
<p>I'm into Nature</p>
<a href="https://goo.gl/mZ7fnX">Pretty pictures</a>
<ul>
<li>Forests</li>
<li>Mountains</li>
<li>Coast</li>
</ul>
</div>
<div class="container">
<div class="row">
<div class="col-sm">
<img class=".img-fluid img-thumbnail" src="https://s3-us-west-2.amazonaws.com/media-tentree-com/wp-content/uploads/2015/07/WynL7AI-1024x683.jpg" alt="Weird trees">
</div>
<div class="col-sm">
<img clas s=".img-fluid img-thumbnail" src="https://c1.staticflickr.com/6/5496/9119108805_9da7cb9f8e_b.jpg" alt="Suisse">
</div>
<div class="col-sm">
<img class=".img-fluid img-thumbnail" src="http://wallpaperlepi.com/wp-content/uploads/2014/08/Stone-on-Tropical-Beach-Wallpaper-Android.jpg" alt="Ocean and shit">
</div>
</div>
</div>
</div>
</body>
</html>