-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay7.html
66 lines (57 loc) · 1.53 KB
/
Day7.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
<html>
<head>
<title>Seventh day at Projection Education</title>
</head>
<body>
<header>
Date: 14-Apr-18 (Saturday)
<span>
Day 7</span>
</header>
<!--Topic of the day-->
<h1>
Block & Inline Element
</h1>
<!-- What they tought-->
<h1 style="color: #262626; font-family: sans-serif;">1. Block Element</h1>
<h3 style="color: green;">Who Occupies 100% width of the parent element.
</h3>
<h2>Example</h2>
<ul>
<li>Heading Tags (h1, h2, h3, h4, h5, h6).</li>
<li>Paragraph Tag (p)</li>
<li>Div Tag (Div)</li>
<li>Table Tag (Table)</li>
<li>Unordered List (ul) etc.</li>
</ul>
<h1 style="color: #262626; font-family: sans-serif;">2. Inline Element</h1>
<h3 style="color: green;">Those Element who Occupy only the required space.
</h3>
<h2>Example</h2>
<ul>
<li>Image Tag (img)</li>
<li>Span Tag (Span)</li>
<li>Anchor Tag (a)</li>
<li>Input Tag (input) Etc.</li>
</ul>
<br>
<MARK>Note:</MARK><i>Align attr Only works with Block Elements.</i>
<br>
<!-- Second Page Link-->
<a href="Day8.html">Day8</a>
</body>
</html>