0% found this document useful (0 votes)
5 views4 pages

Day 1

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views4 pages

Day 1

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

Introduction to Web Development

Web development is the process of creating and maintaining websites and web applications. A
website is to writing code that makes the website function correctly.

Html Introduction

The first version of HTML was written by Tim Berners-Lee in 1993.

What is HTML?

• HTML stands for Hyper Text Markup Language

• HTML is the standard markup language for creating Web pages

• HTML describes the structure of a Web page

• HTML consists of a series of elements

HTML Basic Structure

<!DOCTYPE html>
<html>
<head>
<title>Websites</title>
</head>
<body>
<h1>Welcome</h1>
<h2>Welcome</h2>
<h3>Welcome</h3>
<h4>Welcome</h4>
<h5>Welcome</h5>
<h6>Welcome</h6>
</body>
</html>
HTML Basic Structure Explanation

● The <html> element is the root element of an HTML page


● The <head> element contains meta information about the HTML page
● The <title> element specifies a title for the HTML page
● The <body> tag contains headings, paragraphs, images, hyperlinks, tables, lists, etc.
● The <h1> element defines a large heading
● The <p> element defines a paragraph

HTML Attributes

● All HTML elements can have attributes


● Attributes provide additional information about elements
● Attributes are always specified in the start tag

HTML Images

● The HTML tag is used to embed an image in a web page.


● The tag creates a holding space for the referenced image
<html>
<head>
<tittle>
my frst page
</tittle>
</head>
<body>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Sequi,
expedita.</p>
<img src="D:\program\images\assets\lotus.jpg" width="400"
height="500">
</body>
</html>

Marquee Tag in HTML

The tag is a container tag of HTML that is implemented for creating scrollable text or images
within a web page from either left to right or vice versa, or top to bottom.

You might also like