-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbad_css.html
More file actions
62 lines (50 loc) · 1.99 KB
/
bad_css.html
File metadata and controls
62 lines (50 loc) · 1.99 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
<html>
<head>
<link rel="stylesheet" href="bad_css.css">
<title></title>
</head>
<body>
<div class="top-section">
<ul>
<li><a href="#">Part 1</a></li>
<li><a href="#">Part 2</a></li>
<li><a href="#">Part 3</a></li>
</ul>
</div>
<div class="section-one">
<h1 class="section-one-heading">My Webpage</h1>
<div class="section-one-left">
<img class="section-one-picture" src="http://assets3.starterleague.com/assets/arjun-venkataswamy-70a08845f122d43ed758e2a2236beb82.jpg" alt="Arjun's picture">
This is me
</div>
<div class="section-one-box">
<div class="section-one-box-a">
This is my web page
</div>
<div class="section-one-box-b">
There is some awesome content on here
</div>
<div class="section-one-box-c">
Scroll down for more
</div>
</div>
</div>
<div class="section-two">
<h2 class="section-two-header">Here are some things I like:</h2>
<div class="section-two-container">
<img class="image" src="http://web-images.chacha.com/images/Gallery/4711/do-you-know-pirate-lingo-1405104939-sep-18-2012-1-600x400.jpg" alt="pirate">
<img class="image" src="http://www.ninjastars.org/wp-content/uploads/2011/07/Ninja1.jpg" alt="ninja">
<img class="image" src="https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ-gltWXl0SYhmo6WYoX8t2gGAvUpKJO9bWwpaSok4c-TJxsoihpw" alt="chocolate">
</div>
</div>
<div class="section-three">
<h2>Here are some things I don't like</h2>
<div class="section-three-container">
<img class='img-1' src="http://milknotjails.files.wordpress.com/2012/02/milk.jpg" alt="milk">
<img class='img-2' src="http://onlyagame.wbur.org/files/2012/10/1019_oag_college-football.jpg" alt="football">
<img class='img-3' src="https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT9LwDdQvKaVC4lxwoxFWZdT_8kkJZkkVVy1xHD8Gao_v_6ZIv6" alt="miley-cyrus">
<img class='img-4' src="http://thebettermanprojects.files.wordpress.com/2013/03/lawnmower_t620.jpg" alt="mowing-the-lawn">
</div>
</div>
</body>
</html>