Unit 1 - Getting Started With HTML
Unit 1 - Getting Started With HTML
GETTING STARTED
WITH HTML
Prepared by: Mark Anthony A. Gioketo
MARK ANTHONY A. GIOKETO
REGISTRAR
Olarte’s School of Science and Technology
2011 - Present
E-commerce Websites:
Purpose: Facilitate online buying and selling.
Examples: Amazon, eBay, Etsy.
Entertainment Websites:
Purpose: Provide content for leisure and recreation.
Examples: YouTube, Netflix, Spotify.
Educational Websites:
Purpose: Offer resources for learning.
Examples: Khan Academy, Coursera, edX.
WEB SITE TYPES
AND PURPOSES
2. HTML5 Standards:
• Enhanced multimedia support (audio and video tags).
• Semantic elements:
• <header>, <footer>, <section>, <article> for better
document structure.
• Input types:
• email, date, range for better form handling.
WEB-DEVELOPMENT LANGUAGES
YOU CAN USE TO BUILD A WEB
PAGE
<!DOCTYPE html>
<html>
<head>
<title>Sample Page</title>
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
</header>
<section>
<p>This is a simple example of an HTML
document.</p>
</section>
</body>
</html>
WEB-DEVELOPMENT LANGUAGES
YOU CAN USE TO BUILD A WEB
PAGE
This unit followed a different turn by eliminating
deprecated tags and attributes. Deprecated tags and
attributes are tags and attributes that are being phased
out and are thus no longer recommended in the current
W3C standard. However, deprecated tags are still found
on many web sites, so it is useful to know their meaning
from a maintenance point of view. In an attempt to
remove deprecated tags, projects use the Cascading Style
Sheet (CSS) to change the style of the web page. CSS
helps you to define styles for different web page
elements. A style is a rule that determines an element’s
aesthetics. You will define CSS in 3 different ways: inline
style, embedded style and external style.
WEB-DEVELOPMENT LANGUAGES
YOU CAN USE TO BUILD A WEB
PAGE
Cascading Style Sheets (CSS)
h1 {
color: darkblue;
text-align: center;
}
p{
padding: 10px;
}
WEB-DEVELOPMENT LANGUAGES
YOU CAN USE TO BUILD A WEB
PAGE
Using JavaScript, developers can change the
content of the HTML element, modify CSS styles,
change attributes, and more. JavaScript is a
programming language in which developers specify
the instructions that the browser must perform in
order to perform specific tasks.
TOOLS NEEDED FOR CREATING
WEB PAGES
You can create web pages using HTML with a simple text
editor, such as Microsoft Notepad which is readily available in
all devices running Windows Operating Systems. A Text Editor
is a type of computer program that edits plain text.
You can also create a web page using a Source Code Editor,
which is a program designed specifically for editing source
code of computer programs by programmers. Sublime Text
and Notepad++ are some of the top source code editors
available for web development.
TOOLS NEEDED FOR CREATING
WEB PAGES
You can create web pages using WYSIWYG editor such as
Adobe Dreamweaver, Amaya, or CoffeeCup HTML Editor. A
WYSIWYG editor is a program that provides a graphical user
interface that allows a developer to preview the web page
during its development.
OTHER TOOLS NEEDED FOR
CREATING WEB PAGES
1. Text Editors:
• Notepad++: Lightweight and beginner-friendly.
• Sublime Text: Offers advanced editing features like
multiple cursors.
• Visual Studio Code: Free, extensible, and widely used by
developers.
• Static Design:
Example: A personal blog with fixed content.
• Dynamic Design:
Example: An online store with real-time product
updates.
• Responsive Design:
Example: A portfolio site that adjusts layout for mobile
devices.
WEBSITE DESIGN METHODS AND
STRUCTURES
2. Website Structures:
• Hierarchical Structure:
Example: Corporate websites with categories and
subcategories.
• Linear Structure:
Example: Online training courses with sequential
lessons.
• Webbed Structure:
Example: News websites with interconnected articles.
THANK
YOU