Save
WEBSITE
Lesson 1
Save
Share
Learn
Content
Leaderboard
Learn
Created by
Hanz Chrisrome Chico
Visit profile
Cards (39)
Website
is crucial for any business
Website can be used to accomplish many different
marketing strategies
to help business grow.
The website has a far more
extensive
reach than any other form of advertising.
HTML
is known as
Hypertext Markup Language
HTML
is written using markups or tags which represent various elements
Structure of HTML
Elements
Tags
Attributes
Elements
are components of an HTML file, including anchors, paragraphs, tables, forms, lists, images, and the like.
Tags
or
markups
is the element in an HTML file.
Tags has two kinds the
paired tag
and the
empty tag.
Paired tag
consists of a start tag and an end tag.
The
start tag
marks the beginning of a section that is formed using a left-angle bracket, the tag name, and a right-angle bracket.
Empty tags
are tags that do not have an end or closing tag.
Attributes
are the additional information or characteristic given to HTML tags.
Attributes
is used to enhance or modify a tag and is always placed within the start tag after the tag name seperated with space.
HTML tag
is paired tag which indicates that the document is an html file.
Head tag
holds information about the document and is generally not displayed.
Body tag
contains all other tags and delimits the body section of the web pages. The visible section when web pages are executed in a browser.
Titles
and
Subtitles
are used to create headings in an HTML document.
The
p tag
creates a paragraph to be displayed in a browser.
Pre tag
displays preformatted contents on a web page and preserves white spaces from new lines and spaces.
The
br tag
is an empty tag that displays a breaking space.
A
tag
creates a hyperlink that could navigate to another web page.
The
img tag
describes an image in an HTML document.
Character entities
are used to display characters in an HTML document.
Emojis
are image-like texts representing a feeling, an emotion, an action, a place, and many more.
Table tag
allow us to create tables, composed of rows and columns, with headers and a caption.
TR tag
is for adding a table row
TD tag
is used to add columns in a table.
TH tag
is for adding the table headers and must be inside a TR tag
Lists
are used to group related items be it ordered or unordered.
Ordered list
are used to group items and present them with order or arrangement through numbers or letters.
OL tag
gives us a way of changing its displayed sequence
Unordered lists
or bulleted lists may display contents without a sequence. It presents its list with bullets.
HTML forms
use different elements to accomodate different ways of inputting in a form.
GET method
transfers data to the URL
POST method
transfers data using the HTTP.
Action
sets the URL to which the data will be sent.
label tag
uses the for attribute to determine which elements uses that label
All elements in a form must carry a
name attribute.