HTML Session 1
HTML Session 1
Contents
• Web Design
• Web Development
• Type of Web Development
• Front-end, Back-end and Full stack
• Network
• Internet
• WWW
• URL
• HTML
What is Web Design
• Web design refers to the process of creating
and designing websites. This includes the
layout, color schemes, typography, and
overall visual aesthetics of a website. Web
design also involves user experience (UX)
design, which focuses on how users interact
with a website and ensuring that the site is
easy to use, intuitive, and efficient.
What is Web Development
• Web development refers to the process of
building and maintaining websites and web
applications. It involves the use of
programming languages, such as HTML,
CSS, and JavaScript, as well as web
development frameworks and tools, to
create websites and web applications that
are functional, interactive, and responsive.
Example
What is a User-Friendly Website?
?
Website Vs Web Application
• Website typically provides static content,
while a web application provides dynamic
content and interactive functionality.
• A website is a collection of web pages
that are designed to provide information
or content to visitors. Websites typically
contain information about a company,
organization, or individual, and may
include static pages such as an "About
Us" page, a "Contact Us" page, and a
blog.
Cont..
• On the other hand, a web application
is a software application that runs on
a web server and is accessed through
a web browser. Web applications
provide dynamic content and
interactive functionality, such as user
authentication, data input and
storage, and real-time updates.
Examples of web applications include
online banking systems, social media
What is Network
HTTP
Request
Web Server 3
HTTP
Response HTTP
Request
Web Client
HTTP HTTP
Request Response
HTTP
Response
Web Server 2
How can see http Request/Response
<!DOCTYPE html>
HTML Versions
</body>
</html>
A Simple HTML Document
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
</body>
</html>
Example Explained
• The <!DOCTYPE html> declaration defines this document to
be HTML5
• The <html> element is the root element of an HTML page
• The <head> Used to provide a information about webpage.
• Nested within itself other tags like
• <base> <meta> and <title>
<base>
• Attribute href=url
• Specify the base pathname for all relatively URLs in the
document
• No end tag.
Cont..
<meta>
Used to provide information about the document
• Keywords or descriptions to add search engines
<title> element specifies a title for the document
Usually appear on the title bar of the browser
window.
Meta
<html><body>
<b>Confidence</b><br />
<big>Hardwork</big><br />
<i>Preseverance</i><br />
<code>Samsung CRT</code><br /> Implement it as a Exercise
This is<sub> subscript</sub><br /> (Practical)
This is<sup> superscript</sup>
</body></html>
HTML STYLE ATTRIBUTES
Tags Description
Attributes Description
Unvisited Link
HTML Links - The target Attribute
• <a href="https://
www.w3schools.com/" target="_blank">Visit
W3Schools!</a>
• <a href="https://www.w3schools.com/
html/" target="_self">HTML5 tutorial!</a>
This link open in a new tab
This link open in same
tab Link will open in new tab
autoplay autoplay Specifies that the audio will start playing as soon as
it is ready
loop loop Specifies that the audio will start over again, every
time it is finished
preload auto Specifies if and how the author thinks the audio
metadata should be loaded when the page loads
none
muted muted Specifies that the audio output of the video should be muted
preload auto Specifies if and how the author thinks the video should be loaded
metadata when the page loads
none
src URL Specifies the URL of the video file
width pixels Sets the width of the video player
Del and ins Tag
Adding a Border