Web Programming Indv Assignment PDF
Web Programming Indv Assignment PDF
HTML, which stands for Hypertext Markup Language, is the predominant markup language used
for creating web pages.
The <html> tag is called the root element because it contains all the elements in the document,
and it can not be contained within any other element.
- Every web page starts with <html> tag and ends with </html>.
<HEAD> </HEAD>
- The web page should have only one head tag. The head tag starts with <head> and ends with
</head>.
The <BODY> Element
This is where we will place our content for our visitors.
We can also set the text color of the web page just like background color. We use text attribute of
<BODY> to do this.
<body bgcolor=“yellow” text="red">
1.3 Creating Links
A hyperlink (or link) is a word, group of words, or image that you can click on to jump to a new
document or a new section within the current document.
It can be used to change the background of your webpage, the color of your text or the content
of a table.
HTML Headings
Headings are defined with the <h1> to <h6> tags. <h1> defines the largest heading and <h6> the
smallest heading.