-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.11 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<!--Normal code-->
<section class="section-img">
<h2>This is a title</h2>
<p>This is a long paragraph that describes the image that is shown below this paragraph. Wow! Let's make some more text here!</p>
<img src="imglink.jpg" alt="image of something">
</section>
<!--A serious case of divitis! Wow WTF!-->
<section>
<div class="section-img">
<div class="section-img-title">
<h2>This is a title</h2>
</div>
<div class="section-img-p">
<p class="p1">This is a long paragraph that describes the image that is shown below this paragraph.</p>
<p class="p1">Wow! Let's make some more text here!</p>
</div>
<div class="section-img-img">
<img src="imglink.jpg" alt="Image of something">
</div>
</div>
</section>
</body>
</html>