H1
H1
your information
electronically
using internet.
Warm up - 5 Minutes
https://www.bbc.com/news
Lesson 10 - HTML
Objectives :-
1. Define HTML with its features.
2. Define tags and attributes with its types.
3. Identify the basic structure of web page.
4. Create, save, view and edit the web page.
5. Create web page using heading,paragraph, line break, center,
horizontal and preformatted tag.
6. Create web page using text formatting tags such bold,italics,
underline, superscript and subscript..
7. Insert inline image ,table and listing on the web page.
8. Use the marquee tag on the web page.
9. Create link between web pages.
START UP
Web Page
A web page is a document commonly written in Hypertext
Markup Language (HTML) that is accessible through the
internet using a web browser.
Web Site
The collection of webpages is called website. A website
can have one web page or more than one pages depending
on the website. It is stored on web server. Ex:-
www.facebook.com
Web Page Designing
Web page designing is the process of creating and publishing simple to
complex pages with hypertext so that such pages can be viewed and shared
by every users on the web. HTML,CSS, JavaScript etc. are used to create
web page.
Types of Web Page
1. Static Web Page
2. Dynamic Web Page
Static Web Pages
Static Web pages are very simple. It is written in
languages such as HTML, JavaScript, CSS, etc. In static
web pages, pages will remain the same until someone
changes it manually.
Dynamic Web Page
Dynamic Web Pages are written in languages such as
CGI, ASP.NET, PHP, Python, JSP etc. In dynamic web
pages, the content of pages is different for different
visitors. It takes more time to load than the static web
page. Dynamic web pages are used where the information
is changed frequently, for example, stock prices, weather
information, etc.
Difference between Static and
Dynamic Webpage
Static Webpage Dynamic Webpage
Static web page are same for every Dynamic web pages are different for
viewers. different viewers.
Static web pages are changed manually Dynamic web pages changes automatically
13
DAY 1
Introduction to
HTML
Day 1 - Objectives
1. Define HTML with its features.
2. Define tags and attributes with its types.
3. Identify the basic structure of web page.
15
HTML
The text and other tags are written between the start and end tags. The
starting tag activate the effect and the closing tag turns off the effect.
Some examples of container tags are: <HTML></HTML>,
<HEAD></HEAD>,<TITLE></TITLE>, <BODY></BODY>,
<H2></H2>, <B></B>, <I></I>, <U></U>, <P></P>, etc.
The Basic Structure or Syntax of
Paired Tag
Empty or Singular Tag
The tags which have no ending tags are called empty tags. They are
also called stand alone or singular tags. Some examples of empty
tags are <IMG>, <BR>, <HR>, etc.
Attributes
The attributes are the keywords used to provide additional
information to describe the HTML elements. They are always
included in the start tag of the element with some value after
equal to sign. Some of the common attributes are color, height,
width or the location of the linked file.
Video
https://youtu.be/SHQjWmvfz_A
The Basic Structure or Syntax of
Attribute
...cont.
Basic Structure of HTML
Basic Structure of HTML
1. !DOCTYPE