Week2 ExploringHTML
Week2 ExploringHTML
•diverse
information
sharing through
universal web
access.
Lesson 2: Exploring HTML
Web 3.0
❖Is a movement led by
the World Wide Web
Consortium (W3C).
❖It is alike Web 2.0 but
it is used to cater
individual user.
❖It allows data to be
shared and reused
across application,
enterprise, and
community
boundaries.
WEBSITE
A collection of static web page that is primarily
informational. Its main purpose is to provide content
and information to visitors.
WEB APP
A collection interactive web pages that was
designed for user engagement and functionality. It
offers dynamic, interactive features and allows
users to perform specific tasks or transactions.
HTML
CSS
JAVASCRIPT
• HTML stands for Hypertext Markup
Language, and it is the most widely
used language to write/ create Web
Pages.
• Hypertext refers to the way in which
Web pages (HTML documents) are
HTML linked together through series of
Hyperlinks.
• Markup Language which means you
use HTML to simply "mark-up" a text
document with tags that tell a Web
browser how to structure it to
display.
https://youtu.be/ok-plXXHlWw
HTML Editors
An HTML editor is a piece of software for creating and editing HTML code. It
can be a stand-alone software dedicated to code writing and editing or a
part of an IDE (Integrated Development Environment).
Contains metadata, which is content that describes the document or provide information about how the
document should be processed by the browser
HTML Tags
<body>
• The <body> tag defines the document's body.
• The <body> element contains all the visible contents of an
HTML document, such as headings, paragraphs, images,
hyperlinks, tables, lists, etc.
Sectioning elements are used to mark major topical areas (major topics of your page) of you web page.
HTML Tags
<p>
• The <p> tag defines a paragraph.
• Browsers automatically add a single blank line before and after
each <p> element
Grouping elements help organize content into logical blocks or lists within an HTML document.
HTML Tags
<em> & <strong>
• The <em> tag emphasizes text, while the <strong> tag
highlights important text.
• The <em> tag will generally render as italic emphasis.
• The <strong> will generally render as bold emphasis.
Text-level elements are used to format specific sections of text inline with other content.
HTML Comments
A comment is descriptive text or note that is added to
the HTML File but does not appear in the browser
window.
<!--contain comments-->