Lab Session 01
Lab Session 01
Lab Session 01
OBJECTIVE
To study about Web Engineering
HTML Tags
HTML Elements
HTML List
Definition
Web engineering is basically all about designing and promoting web based systems. Web Engineering is
concerned with the establishment and use of sound scientific, engineering, and management principles
and disciplined and systematic approaches to the successful development, deployment, and maintenance
of high quality Web-based systems and applications.
Web Engineering is the use of scientific, engineering and management principles and systematic
approaches with the aim of successfully developing, deploying and maintaining high quality Web-based
systems and applications.
Page 1
Web Engineering Lab Session 01
What is HTML?
HTML stands for Hyper Text Markup Language.
HTML is a computer language that is used to create documents on the World Wide Web.
HTML is very simple, and logical. It reads from left to right, top to bottom and uses plain text.
HTML is NOT a programming language, but a mark-up language that uses <Tags> like this.
The websites you view on the internet are actually text files that consist of HTML Tags.
HTML Editors
Notepad
Notepad ++
Front Page
Dreamweaver
HTML Features
HTML is the basic building blocks of all websites and web pages.
HTML is case insensitive.
There is no error in HTML code.
What is Hypertext?
Hypertext - text with hyperlinks
Hypertext is text that links to other information. By clicking on a link in a hypertext document.
A user can quickly jump to different content.
Though hypertext is usually associated with Web pages, the technology has been around since the
1960s.
Textual data which is linked within itself or across multiple documents.
Page 2
Web Engineering Lab Session 01
Version/History of HTML
Page 3
Web Engineering Lab Session 01
This declaration defines that the document that we are writing in HTML is basically of version
HTML5.
<html>
The opening <html> marks the start of an HTML document, & the closing </html> indicates the
end of the HTML document.
An HTML document is divided into two sections: the head & the body.
<head>
The opening <head> element is a container for all the heads elements and the closing </head>
defines also that head has closed.
The content of the head element describes the HTML document but is not displayed by the
browser directly.
<title>
The <title> tag is used inside the <head> tag to mention the document title.
<body>
The body element contains all of the content to be displayed in the Web page.
Page 4
Web Engineering Lab Session 01
Elements in HTML
A distinct object in the document
An element is made up of an opening tag and a closing tag, and everything in between.
The whole document can also be considered as an element.
Examples: paragraph, heading , or the page’s title
Element look likes:
<p> ………………….. </p>
Tag in HTML
Page 5
Web Engineering Lab Session 01
Core building block of HTML is tag , which marks each element in the document.
Element refers to an object in a Web page, & tag refers to the HTML code that creates the object
Tags are used to mark up the start and end of an HTML element.
A start tag consists of an opening angle bracket (<) followed by the element name, zero or
more space separated attribute/value pairs, and a closing angle bracket (>).
< p> </p>
As another example, whereas
“<title>” and “</title>” are tags,
“<title>This is My Title</title>” is a title element
Types of Tag
Two Sided Tag
- Having beginning and ending tags or opening and cl osing tags.
Q2. Create an HTML document having title is “Lab 01” and heaving
body “My First Attempt”?
Page 6
Web Engineering Lab Session 01
Q3. Create an HTML document having title is “Web Engineering” and heaving body “Second Semester”?
Page 7
Web Engineering Lab Session 01
Page 8