HTML Basics
HTML Basics
HTML Basics
What is HTML?
stands for Hyper Text Markup Language.
it is the standard markup language to create web pages.
describes the structure of a web page.
consists of a series of elements which tell the browser how to
display the content
HTML elements
<p> I am a paragraph. </p>
NOTE: When you are editing the file and at the same time open in a browser, you don't
have to reopen the file but just Refresh (F5) the page.
Class work 1
Make this web page with a proper title.
img
img element
defines an image
It is an empty
element.
It is used with src
attribute which
defines the location
of the image.
<img src="bee
eaters.jpg">
Class work 2
Make this web page with a title
a
a element defines a hyperlink.
the link can be targeted
to a location in the same web page
to another web page in the same web site (local) or
to another web page in another web site (public).
a
ul, ol, li
ul defines an unordered list.
ol defines an ordered list.
li defines a list item in a list.
Class work 3
Make this web page.
Note: The links must be inside list items.
Thank you!