Basics of HTML: IT-3404 Assignment
Basics of HTML: IT-3404 Assignment
IT-3404 Assignment
Submitted to:
Dr. D. Bhattacharjee
Submitted By:
What is HTML?
Basic Tags:
HTML
◦ <HTML></HTML>
◦ These tags begin and end an HTML document.
HEAD
◦ <HEAD></HEAD>
◦ These tags are in the beginning of the document. Important information is stored in-
between these tags including: title, meta-data, styles, and programming scripts
TITLE
◦ <TITLE></TITLE>
◦ These tags are in-between the HEAD tags and contain the text that appears in the title
of the Web page.
BODY
◦ <BODY></BODY>
◦ As you may have guessed, the BODY tags contain all the text in the body of the
document.
Basic Format of a Web Page:
Page Design:
A web page is created using a language called, Hypertext Markup Language, better known as HTML
Code. You can write your own coding within a plain text editor, such as Note Pad, or use an HTML editor,
which will write the code for you.
HTML codes, also referred to as HTML tags, are enclosed by the lesser than (<) and greater than
(>) brackets and may be written in capital or lower case letters.
Hyperlinks:
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. When you move the cursor over a link in a
Web page, the arrow will turn into a little hand. Links are specified in HTML using the <a> tag.
Add Images:
-width,height
-Alt
-Align
alt=“My image”>
Kinds of URLs
-http://www.women.or.kr
- ftp://ftp.foo.com/home/foo
- gopher://gopher.myhost.com/
- news://news.nuri.net
- mailto:[email protected]
Conclusion:
This is simply a basic introduction to HTML and website structure. The best way to understand HTML
and website structure is to jump in and use it.