-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay1.html
112 lines (107 loc) · 2.85 KB
/
Day1.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<html>
<head>
<title>First day at Projection Education</title>
</head>
<body>
<header>
Date: 07-Apr-18 (Saturday)
<span>
Day 1</span>
</header>
<!--Topic of the day-->
<h1>
Basic HTML
</h1>
<!-- What they tought-->
<ol>
<li>Name of Some Signs <span>Like { } [ ] ; :</span></li>
<li>Basic of Html</li>
<li>Heading Tags</li>
<li>Paragraph Tag</li>
<li>Text Formating Tags like bold italic subscript super script mark(highlight) </li>
<li>Align Attribute</li>
</ol>
<h2>
1. Name of Some Signs
</h2>
<p>
In General there are very common symbols of english which we also use in HTML.</p>
<p>
For Example</p>
<ul>
<li> { } These are Curlie Braces.</li>
<li>[ ] These are Square Braces.</li>
<li> <B>;</B> This is Semi Colon</li>
<li> <B>:</B> This is called Colon</li>
<li>/ Slash</li>
</ul>
<h2>
2. Basics of HTML
</h2>
<p>
HTML is known as Hyper Text Markup Language and it is used for Make the structure of any webpage.</p>
<p>
HTML language can be written in any text editor like notepad, notepad++, skylime, Brackets etc.
<b>At the time of saving any html document we must have to save it with .html extension.</b></p>
<h2>
3. Heading Tags
</h2>
<p>
There are six heading tags in HTML.</p>
Ex.
<h1>This is h1 Tag.</h1>
<h2>This is h2 Tag.</h2>
<h3>This is h3 Tag.</h3>
<h4>
This is h4 Tag.</h4>
<h5>This is h5 Tag.</h5>
<h6>This is h6 Tag.</h6>
<h2>
4. Paragraph Tag
</h2>
<p>
Paraghraph Tag is used to display a pragraph on our webpage.</p>
<p>
P tag automaticly place a Space on top and bottom of the page.</p>
<h2>
5. Text Formatting Tags
</h2>
<p>
These tags are used to Design any text in a webpage.</p>
<p>
Some Examples are here :-</p>
<ul>
<li>
<b>
B Tag is for BOLD.</b>
</li>
<li><i>I Tag is used for Italic.</i></li>
<li> <mark>Mark Tag is to Highlight S.T.</mark> </li>
<li>del <del>Tag is to line over the Text.</del>
</li>
<li>Sub tag - H<sub>2</sub>O </li>
<li>Sup tag - 31<sup>st</sup> ,28<sup>th</sup></li>
</ul>
<h2>
6. Align Attributes
</h2>
<p align="center">
Align attributes is only used for Heading and Paragraph Tags. it has four values Left, Right, Center and Justify.</p>
<!-- Second Page Link-->
<a href="Day2.html">Day2</a>
</body>
</html>