Web Technology Notes
Web Technology Notes
Web Technology Notes
Unit 1
INTRODUCTION TO WWW: 1] World Wide Web, which is also
known as a Web, is a collection of websites or web pages stored in web
servers and connected to local computers through the internet.
2] These websites contain text pages, digital images, audios, videos, etc.
3] Users can access the content of these sites from any part of the world
over the internet using their devices such as computers, laptops, cell
phones, etc.
Internet: 1] Is a worldwide network of devices that enables user to send
email to others and chat with them online.
When you open a website for information you are using the www,
a network of servers over the internet.
UNIT 2
Basics of HTML:
1] The <!DOCTYPE> declaration represents the document type, and
helps browsers to display web pages correctly.
<h1> to <h6>: HTML headings. <h1> defines the most imp
heading & <h6> defines the least imp heading
<p>: To add paragraph. It has a start tag <p> and an end tag </p>
HTML links: HTML links are defined with the anchor <a> tag.
The link's destination is specified in the href attribute.
ATTRIBUTES: Attributes are used to provide additional information
about HTML Elements.
<a href="google.com">This is a link</a>
HTML Image: HTML images are defined with the <img> tag.
The source file (src), alternative text (alt), width, and height are provided
as attributes.
The HTML <br> element defines a line break. Use <br> if you want a
line break (a new line) without starting a new paragraph
HTML Attributes:
3] The width and hight attributes: The <img> tag should also
contain the width and height attributes, which specifies the width
and height of the image (in pixels)
4] The alt attributes: The required alt attribute for the <img> tag
specifies an alternate text for an image, if the image for some
reason cannot be displayed. This can be due to slow connection, or
an error in the src attribute, or if the user uses a screen reader.
HTML Formating:
HTML Tables:
Table cell is defined by a <td> and a </td> tag. td stands for table
data. Everything between <td> and </td> are the content of the
table cell.
Each table row starts with a <tr> and end with a </tr> tag. You can
have as many rows as you like in a table, just make sure that the
number of cells are the same in each row.
Tag Description
Cell Padding: Cell padding is the space between the cell edges and
the cell content. By default the padding is set to 0.
Unordred List: An unordered list starts with the <ul> tag. Each list
item starts with the <li> tag.The list items will be marked with
bullets (small black circles) by default
Ordered List: An ordered list starts with the <ol> tag. Each list
item starts with the <li> tag.The list items will be marked with
numbers by default
Block Elements:
Inline Elements:
An HTML form is used to collect user input. The user input is most
often sent to a server for processing.
Type Description
<input type = “resret”> To clear the info entered by the user and to pu
the page in default mode.
<Frame>: To combine two or more different web pages intp a single
browser.
This tag makes the text moves from one direction to other applying
the properties specified in this tag
When marquee tag is specified the text moves from one end o
browser window to other other disappearing and other appearing.
Direction: specifies the way in which the text will move or scroll.
Values= Left, Right and Up
2]Slide: Text scrolls from on end to other but stops scrolling when
reaches the other end .
3] Alternate: text scrolls from one end to other but bounces back
when text reaches other end , dosent disappear.
Meta Tag
Meta tag that is data about data. Information about web page will
be given by meta tag
It does not have a closing tag but it carries info within its attributes
Name = “ revised” content = date when the web is revised last time