Intro To HTML & Css - Session 1
Intro To HTML & Css - Session 1
• Static
• Dynamic
• Server page
Web Browser
• Web Browser is a software to see web
pages.
Web Server
• Web Server is a computer where web
pages are kept. It provides requested
resources as service so called Server.
Web Design
• The design of websites that are displayed on the
internet. It usually refers to the user experience aspects
of website development rather than software
development.
• What is HTML?
• HTML stands for Hyper Text Mark-up Language
• C
• C++
• Java
• .Net etc.
Scripting languages
• HTML
• CSS
• JAVA Script
• .VB Script etc.
web pages
Why we need to learn HMTL
• Create Websites
• Earn Money
Tags
• What is TAG
<html>
• Types of Tag
1.Container Tags(pair tags)
<html>
</html>
2.empty tags(single tag)
<br>,<img>
Basic HTML Structure
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph</p>
</body>
</html>
Applications OF HTML
<!DOCTYPE html>
<html> CSS Code:
<head>
…………………………………………… <style>
…………………………………………… body{background-color: blueviolet}
.
…………………………………………… h1{color: white;text-align:center}
…………………………………………… p{font-family: verdana;font-size: 20px}
…………………………………………....
……………………………………………
</body>
.. </style>
</head>
<body>
<h1>My First CSS Example</h1>
<p>This is a paragraph</p>
</body>
</html>
QUIZZ
https://forms.office.com/Pages/ResponsePage.aspx?id=PsiMgEal50egP3Oh67ok848--
1VtGZ5ChTdWj0oBEWtURUxHNThYQ1VFMElTTzJER0kyN1VYR0tLQy4u
ASSIGNMENT 1