It Spring Edutech: Chapter 1: Getting Started With HTML
It Spring Edutech: Chapter 1: Getting Started With HTML
It Spring Edutech: Chapter 1: Getting Started With HTML
Invented by :-TIM-BERNERS-LEE
Introduction:
i)Notepad
ii) Notepad++
iv)Eclipse
v) Netbeans
Applications of HTML
HTML is one of the most widely used language over the web. I'm
going to list few of them here:
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.
Internet Navigation - HTML provides tags which are used to
navigate from one page to another and is heavily used in
internet navigation.
Responsive UI - HTML pages now-a-days works well on all
platform, mobile, tabs, desktop or laptops owing to responsive
design strategy.
<head>
<title>This is document title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>Document content goes here.....</p>
</body>
</html>
SOME BASIC HTML TAGS :
HTML is a markup language and makes use of various tags to format
the content. These tags are enclosed within angle braces <Tag
Name>. Except few tags, most of the tags have their corresponding
closing tags. For example, <html> has its closing
tag </html> and <body> tag has its closing tag </body> tag etc.
Above example of HTML document uses the following tags −
1 <!DOCTYPE...>
2 <html>
3 <head>
This tag represents the document's header which can keep other
HTML tags like <title>, <link> etc.
4 <title>
The <title> tag is used inside the <head> tag to mention the
document title.
5 <body>
7 <p>
To learn HTML, you will need to study various tags and understand
how they behave, while formatting a textual document. Learning
HTML is simple as users have to learn the usage of different tags in
order to format the text or images to make a beautiful webpage.
World Wide Web Consortium (W3C) recommends to use lowercase
tags starting from HTML 4.
<head>
Document header related tags
</head>
<body>
Document body related tags
</body>
</html>
We will study all the header and body tags in subsequent chapters,
but for now let's see what is document declaration tag.
<!DOCTYPE html>
<html>
<head>
<title>Heading Example</title>
</head>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
</body>
</html>
Paragraph Tag
The <p> tag offers a way to structure your text into different
paragraphs. Each paragraph of text should go in between an opening
<p> and a closing </p> tag as shown below in the example −
Example
Live Demo
<!DOCTYPE html>
<html>
<head>
<title>Paragraph Example</title>
</head>
<body>
<p>Here is a first paragraph of text.</p>
<p>Here is a second paragraph of text.</p>
<p>Here is a third paragraph of text.</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Line Break Example</title>
</head>
<body>
<p>Hello<br />
You delivered your assignment ontime.<br />
Thanks<br />
Mahnaz</p>
</body>
</html>
Centering Content
You can use <center> tag to put any content in the center of the page
or any table cell.
Example
Live Demo
<!DOCTYPE html>
<html>
<head>
<title>Centring Content Example</title>
</head>
<body>
<p>This text is not in the center.</p>
<center>
<p>This text is in the center.</p>
</center>
</body>
</html>
Horizontal Lines
Horizontal lines are used to visually break-up sections of a
document. The <hr> tag creates a line from the current position in the
document to the right margin and breaks the line accordingly.
For example, you may want to give a line between two paragraphs as
in the given example below −
Example
Live Demo
<!DOCTYPE html>
<html>
<head>
<title>Horizontal Line Example</title>
</head>
<body>
<p>This is paragraph one and should be on top</p>
<hr />
<p>This is paragraph two and should be at bottom</p>
</body>
</html>
Preserve Formatting
Sometimes, you want your text to follow the exact format of how it is
written in the HTML document. In these cases, you can use the
preformatted tag <pre>.
Any text between the opening <pre> tag and the closing </pre> tag
will preserve the formatting of the source document.
Example
Live Demo
<!DOCTYPE html>
<html>
<head>
<title>Preserve Formatting Example</title>
</head>
<body>
<pre>
function testFunction( strText ){
alert (strText)
}
</pre>
</body>
</html>
Nonbreaking Spaces
Suppose you want to use the phrase "12 Angry Men." Here, you
would not want a browser to split the "12, Angry" and "Men" across
two lines −
An example of this technique appears in the movie "12 Angry
Men."
In cases, where you do not want the client browser to break text, you
should use a nonbreaking space entity instead of a normal
space. For example, when coding the "12 Angry Men" in a paragraph,
you should use something similar to the following code −
Example
<!DOCTYPE html>
<html>
<head>
<title>Nonbreaking Spaces Example</title>
</head>
<body>
<p>An example of this technique appears in the movie
"12 Angry Men."</p>
</body>
</html>