-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlesson9.html
66 lines (29 loc) · 888 Bytes
/
lesson9.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
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
66
<!DOCTYPE html>
<html lang = "en">
<head>
<title>div vs span</title>
<meta name = "Developer" content = "Gels">
</head>
<body>
<p>
The difference between span and div is that a span element is in-line and usually used for a small chunk of HTML inside a line (such as inside a paragraph) whereas a div (division) element is block-line (which is basically equivalent to having a line-break before and after it) and used to group larger chunks of code.
</p>
<div>
<table>
</table>
</div>
<div>
DRINKS
</div>
<div>
Whatever <br>
Hello
</div>
<div>
LANA OIL
</div>
Di ako crush ni <span>Crush</span>
<span>SANA ALL</span>
CopyRight ©
</body>
</html>