Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Other

HTML Essentials: The Beginner's Handbook

Rating
-
Sold
-
Pages
47
Uploaded on
19-09-2023
Written in
2019/2020

The Beginner's Handbook is a comprehensive and user-friendly guide designed for individuals new to HTML (Hypertext Markup Language). This handbook serves as an essential resource for getting started with HTML and building a solid foundation in web development. Written with beginners in mind, this book covers the fundamental concepts of HTML, explaining the basics of tags, attributes, elements, and how they work together to structure web pages. It provides a step-by-step approach, guiding readers through the process of creating well-structured and semantically correct HTML documents. Through clear explanations, practical examples, and hands-on exercises, HTML Essentials helps aspiring web developers understand the core principles of HTML development. From creating headings, paragraphs, and lists to incorporating images, links, and forms, this handbook covers all the essential HTML elements and their usage. Additionally, HTML Essentials covers topics such as understanding the doctype declaration, using CSS (Cascading Style Sheets) to style HTML elements, and optimizing web pages for search engines. The book also introduces responsive web design principles, highlighting the importance of creating websites that adapt to different devices and screen sizes. Whether you are a beginner looking to learn HTML from scratch or a professional seeking a refresher, HTML Essentials: The Beginner's Handbook provides a solid introduction to HTML and equips you with the knowledge and skills necessary to create well-structured and visually appealing web pages

Show more Read less
Institution
Course

Content preview

Notes To learn details concept of HTML language


HTML TUTORIAL


What is HTML?
HTML is a language for describing web pages.

 HTML stands for Hyper Text Markup Language
 HTML is not a programming language, it is a markup language
 A markup language is a set of markup tags
 HTML uses markup tags to describe web pages

HTML Tags
HTML markup tags are usually called HTML tags

 HTML tags are keywords surrounded by angle brackets like <html>
 HTML tags normally come in pairs like <b> and </b>
 The first tag in a pair is the start tag, the second tag is the end tag
 Start and end tags are also called opening tags and closing tags

HTML Documents = Web Pages
 HTML documents describe web pages
 HTML documents contain HTML tags and plain text
 HTML documents are also called web pages

The purpose of a web browser (like Internet Explorer or Firefox) is to read HTML
documents and display them as web pages. The browser does not display the HTML tags,
but uses the tags to interpret the content of the page:

<html>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>

,Example Explained
 The text between <html> and </html> describes the web page
 The text between <body> and </body> is the visible page content
 The text between <h1> and </h1> is displayed as a heading
 The text between <p> and </p> is displayed as a paragraph

Editing HTML
HTML can be written and edited using many different editors like Dreamweaver and
Visual Studio.

However, in this tutorial we use a plain text editor (like Notepad) to edit HTML. We
believe using a plain text editor is the best way to learn HTML.

.HTM or .HTML File Extension?
When you save an HTML file, you can use either the .htm or the .html file extension.
There is no difference; it is entirely up to you.

HTML Headings
HTML headings are defined with the <h1> to <h6> tags.

Example

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>




HTML Paragraphs
HTML paragraphs are defined with the <p> tag.

Example
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>

,HTML Links
HTML links are defined with the <a> tag.

Example
<a href="http://www.xitecsolutions.com">This is a link</a>

Note: The link address is specified in the href attribute.

(You will learn about attributes in a later chapter of this tutorial).



HTML Images
HTML images are defined with the <img> tag.

Example
<img src="xitec.jpg" width="104" height="142" />

Note: The name and the size of the image are provided as attributes.

, HTML Elements
An HTML element is everything from the start tag to the end tag:

Start tag * Element content End tag *
<p> This is a paragraph </p>

<a href="default.htm" > This is a link </a>
<br />

* The start tag is often called the opening tag. The end tag is often called the closing tag.



HTML Element Syntax
 An HTML element starts with a start tag / opening tag
 An HTML element ends with an end tag / closing tag
 The element content is everything between the start and the end tag
 Some HTML elements have empty content
 Empty elements are closed in the start tag
 Most HTML elements can have attributes

Tip: You will learn about attributes in the next chapter of this tutorial.



Nested HTML Elements
Most HTML elements can be nested (can contain other HTML elements).

HTML documents consist of nested HTML elements.



HTML Document Example
<html>

<body>
<p>This is my first paragraph.</p>
</body>

</html>

Written for

Course

Document information

Uploaded on
September 19, 2023
Number of pages
47
Written in
2019/2020
Type
OTHER
Person
Unknown

Subjects

$6.89
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Get to know the seller
Seller avatar
knowledgewala

Get to know the seller

Seller avatar
knowledgewala SN College
Follow You need to be logged in order to follow users or courses
Sold
-
Member since
2 year
Number of followers
0
Documents
8
Last sold
-
Knowledgewala

Take Knowledge and Give Knowledge

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions