-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHTML Tutorial.html
More file actions
250 lines (182 loc) · 5.2 KB
/
Copy pathHTML Tutorial.html
File metadata and controls
250 lines (182 loc) · 5.2 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<html>
<head>
<title>
Tutorial
</title>
</head>
<body align="center" bgcolor="#2EFFAA">
<font size="20" color="purple">
<b><h3>
HTML Tutorial for Beginners
</h3></b>
</font>
<br>
<hr height="10">
<br>
<font color="#EA1807">
<p align="left">
<p align="left">
HTML stands for Hyper Text Markup Language, which is the most widely used language
on Web to develop web pages. HTML was created by Berners-Lee in late 1991 but
"HTML 2.0" was the first standard HTML specification which was published in 1995.
HTML 4.01 was a major version of HTML and it was published in late 1999. Though
HTML 4.01 version is widely used but currently we are having HTML-5 version which
is an extension to HTML 4.01, and this version was published in 2012.
</p>
<br>
<h4><u>Why to Learn HTML?</u></h4>
<br>
<p align="left">
Originally, HTML was developed with the intent of defining the structure of
documents like headings, paragraphs, lists, and so forth to facilitate the
sharing of scientific information between researchers. Now, HTML is being widely
used to format web pages with the help of different tags available in HTML language.
<br>
HTML is a MUST for students and working professionals to become a great Software
Engineer specially when they are working in Web Development Domain. I will list
down some of the key advantages of learning HTML:
</p>
<br>
<p align="left">
<ol align="left">
<li>
Create Web site - You can create a website or customize an existing web template
if you know HTML well.
</li>
<li>
Become a web designer - If you want to start a carrer as a professional web
designer, HTML and CSS designing is a must skill.
</li>
<li>
Understand web - If you want to optimize your website, to boost its speed and
performance, it is good to know HTML to yield best results.
</li>
<li>
Learn other languages - Once you understands the basic of HTML then other related
technologies like javascript, php, or angular are become easier to understand.
</li>
</ol>
</p>
<h5><u>Hello World using HTML</u></h5>
<br>
<p>
Just to give you a little excitement about HTML, we are going to give you a small
conventional HTML Hello World program, You can try it using Demo link.
</p>
<br>
<br>
<h4><u>Live Demo</u><sub>(Check Source Code for HTML Code)</sub></h4>
<p>
<html>
<head>
<title>This is document title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>Hello World!</p>
</body>
</html>
</p>
<br>
<br>
<h3><u>Applications of HTML</u></h3>
<br>
<p align="left">
As mentioned before, HTML is one of the most widely used language over the web.
I'm going to list few of them here:
</p>
<br>
<ol align="left">
<li>
Web pages development - HTML is used to create pages which are rendered over the
web. Almost every page of web is having html tags in it to render its details in
browser.
</li>
<li>
Internet Navigation - HTML provides tags which are used to navigate from one page
to another and is heavily used in internet navigation.
</li>
<li>
Responsive UI - HTML pages now-a-days works well on all platform, mobile, tabs,
desktop or laptops owing to responsive design strategy.
</li>
<li>
Offline support HTML pages once loaded can be made available offline on the
machine without any need of internet.
</li>
<li>
Game development- HTML5 has native support for rich experience and is now useful
in gaming developent arena as well.
</li>
</ol>
<br>
<h5><u>Audience</u></h5>
<br>
<p align="left">
This HTML tutorial is designed for the aspiring Web Designers and Developers
with a need to understand the HTML in enough detail along with its simple overview,
and practical examples. This tutorial will give you enough ingredients to start
with HTML from where you can take yourself at higher level of expertise.
</p>
<br>
<h5><u>Prerequisites</u></h5>
<br>
<p align="left">
Before proceeding with this tutorial you should have a basic working knowledge
with Windows or Linux operating system, additionally you must be familiar with −
</p>
<br>
<ul align="left">
<li>
Experience with any text editor like notepad, notepad++, or Edit plus etc.
</li>
<li>
How to create directories and files on your computer.
</li>
<li>
How to navigate through different directories.
</li>
<li>
How to type content in a file and save them on a computer.
</li>
<li>
Understanding about images in different formats like JPEG, PNG format.
</li>
</p>
</font>
<br>
<p align="center">
<b><i>
<a href="D:\Ansh files\WT Lab\Homepage WT Assignment 1 Q1.html">Homepage</a>
</i></b>
</p>
<br>
<hr>
<hr>
<br>
<font color= "#FZ8700" size="5">
<b>
<p align="center">
Address:
Diamond Modern Academy School, Block E, South City II, Ward 24, Delhi
<br>
Contact No.: 011-27860369
<br>
Mail us at: info@itsc2013.com
</p>
</b>
</font>
<br>
<hr>
<hr>
<br>
<p align="center">
<font size="5">
<b><a href="HTML Tutorial.html"><strike>To the </strike> Top </a></b>
</font>
</p>
<br>
<hr>
<br>
</body>
</html>