SlideShare a Scribd company logo
Basic <HTML>
from w3school lessons
by Niciuzza, nicha.in.th
Hyper Text Markup Language
=
HTML
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
<!DOCTYPE html>
<head>
</head>
<body>
<div class="wrapper">
<header id="logocompany">
<h1 id="wegetlogo"><a href="" title="
WeGetHosting.com"><img src="img/logo.png" alt="
WeGetHosting.com"></a></h1>
</header>
.....
</div>
</body>
</html>
HTML is a markup language
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
HTML is a markup language
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
HTML
have many many
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
TAGS
<tagname>content</tagname>
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
TAGs
are usually place inside
<Angle Brackets>
a TAG means a type of content
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
<p> = Paragraph
<a> = Anchor Link
<h1> = Header 1
HTML documents
contain
TAGs & TEXTs
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
HTML documents
is
Web Page
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
<!DOCTYPE html>
<head>
</head>
<body>
<div class="wrapper">
<header id="
logocompany">
<h1 id="logo"><a
href="" title="P&THosting.com"
><img src="img/logo.png" alt="
WeGetHosting.com"></a></h1>
</header>
.....
</div>
</body>
</html>
HTML page structure
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
<html>
</html>
<body>
</body>
<h1>This a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
HTML
HTML Versions
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
1991
1993
1995
1997
1999
2000
2012
2013
<!DOCTYPE>
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
HTML 4.01
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
XHTML 1.0
<!DOCTYPE html>
HTML5
HTML Tags You Must Know
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
● Headings
● Paragraphs
● Link
● Image
<h1>This is Heading</h1>
<p>This is Paragraph</p>
<a href="http://nicha.in.th">This is a link</a>
<img src="w3schools.jpg" width="104" height="142">
<p>Hello World</p>
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
open TAG
Content
close TAG
HTML Elements
HTML Element Syntax
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
<a href="default.htm">This is a
link</a>
<img src="w3schools.jpg" width="104"
height="142" />
HTML Element Nested
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
<html>
</html>
<body>
</body>
<h1>This a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
HTML Attributes
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
<a href="nicha.in.th">This is a link</a>
href = a attribute of <a>
Attributes Value should be inside "Double Quote" or 'Single Quote'.
But Double Quote is Recommended.
HTML Attributes
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
<img src="pic.jpg" width="104" height="142">
One Tag may have many attributes
HTML Attributes
that can use in any tags
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
class: Specifies one or more classnames for an element
id: Specifies a unique id for an element
style: Specifies an inline CSS style for an element
title: Specifies extra information about an element (displayed as a tool
tip)
<h1>HTMl H1 Heading</h1>
<h2>HTML H2 Heading</h2>
<h3>HTML H3 Heading</h3>
<h4>HTML H4 Heading</h4>
<h5>HTML H5 Heading</h5>
<h6>HTML H6 Heading</h6>
HTML Heading
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
HTMl H1 Heading
HTML H2 Heading
HTML H3 Heading
HTML H4 Heading
HTML H5 Heading
HTML H6 Heading
● Don't use Heading for Bold or Big text.
● Use them as a hierarchy.
<!-- This is a comment -->
HTML Comments
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
● Comments make code more readable and understandable.
● Comments are ignored by the browser and are not displayed.
<p>This is a paragraph.
Tincidunt pellentesque
ridiculus, dignissim nec!
Tincidunt et proin porttitor?
Augue ac cras! Integer augue
sit turpis magna et dolor
cras.</p>
HTML Paragraphs
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Line Break. <br>
This is a paragraph. Tincidunt
pellentesque ridiculus, dignissim nec!
Tincidunt et proin porttitor? Augue ac
cras! Integer augue sit turpis magna et
dolor cras.
<p>This is a paragraph.<br>
Tincidunt pellentesque
ridiculus, dignissim nec!<br>
Tincidunt et proin porttitor?
<br> Augue ac cras! Integer
augue sit turpis magna et
dolor cras.</p>
This is a paragraph.
Tincidunt pellentesque ridiculus,
dignissim nec!
Tincidunt et proin porttitor?
Augue ac cras! Integer augue sit turpis
magna et dolor cras.
<p><b>This text is bold</b></p>
<p><strong>This text is strong</strong></p>
<p><i>This text is italic</i></p>
<p><em>This text is emphasized</em></p>
HTML Text Formatting
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
This text is bold
This text is strong
This text is italic
This text is emphasized
<p><b>This text is bold</b></p>
<p><strong>This text is strong</strong></p>
<p><i>This text is italic</i></p>
<p><em>This text is emphasized</em></p>
HTML Text Formatting
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
● Many Browsers Often renders <strong> as <b>, and <em> as <i>.
● <strong>, <em> mean "Important".
● <b>, <i> defines bold or italic text only.
Ref: http://www.w3schools.com/html/html_formatting.asp
<a href="url">Link text</a>
HTML Links
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
● <a> defines a hyperlink.
● Hyperlink is a word, group of words, or image that you
can click on to jump to another document.
Link text
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
The content of the document......
</body>
</html>
HTML <head>&<title>
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
● <head> instruct the browser where to find style sheets, provide meta
information, and more.
● <title> defines the title of the document.
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
HTML <link>,<style>
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_head.asp
● <link> instruct the browser where to find style sheets or script.
● <style> is used to define style information for an HTML document
<head>
<style type="text/css">
body {background-color:yellow}
p {color:blue}
</style>
</head>
<img src="picture_url" alt="some_text">
HTML Images
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_images.asp
<img> is empty, it contains attributes only and no closing tag.
<img> Attributes
● src = source (of image)
● alt = alternate text for an image, This text will show when image doesn't
display.
● width = width of image
● height = height of image
<table border="1">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
HTML Table
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
● A table is divided into rows with <tr> ("table row").
● each row is divided into data cells with <td> ("table data") and contain
the data of the table which can be text, links, images, lists, forms, other
tables, etc.
<table border="1" cellpadding="10"
>
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
HTML Table Attribute
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_tables.asp
● border = border of the table
● cellspacing = space between each cells
● cellpadding = space inside each cells
<table border="1" cellspacing="10"
>
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
HTML Order Lists
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_lists.asp
● <ol> is defined as order list.
● <li> is under <ol>, defined as each list item.
<ol>
<li>The first list item </li>
<li>The second list item </li>
<li>The third list item </li>
</ol>
HTML Unorder Lists
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_lists.asp
● <ul> is defined as Unorder List.
● <li> is under <ul>, defined as each list item.
<ul>
<li>The first list item </li>
<li>The second list item </li>
<li>The third list item </li>
</ul>
HTML Description Lists
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_lists.asp
● <dl> is defined as Description List.
● <dt> is under <dl>, defined as terms/names.
● <dd> is defined as description of each term/name.
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>
HTML Nested Lists
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_lists.asp
<ul>
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea</li>
<li>Green tea
<ul>
<li>China</li>
<li>Africa</li>
</ul>
</li>
</ul>
</li>
<li>Milk</li>
</ul>
HTML Block Element
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_blocks.asp
● Block level elements normally start (and end) with a
new line.
● Examples: <h1>, <p>, <ul>, <table>, etc.
HTML Inline Element
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_blocks.asp
● Inline elements are normally displayed without
starting a new line.
● Examples: <b>, <td>, <a>, <img>
HTML <div>
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_blocks.asp
● <div> is Block Elements.
● <div> is used as a container for grouping other HTML
elements.
● <div> is used for creating layout of web instead of
using <table>
HTML <span>
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_blocks.asp
● <span> is Inline Elements.
● <span> is used as a container for text.
HTML Table layouts
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_layout.asp
<!DOCTYPE html>
<html>
<body>
<table width="500" border="0">
<tr>
<td colspan="2" style="background-color:#FFA500;">
<h1>Main Title of Web Page</h1>
</td>
</tr>
<tr>
<td style="background-color:#FFD700;width:100px;">
<b>Menu</b><br>HTML<br>CSS<br>JavaScript
</td>
<td style="background-color:#EEEEEE;height:200px;width:400px;">
Content goes here</td>
</tr>
<tr>
<td colspan="2" style="background-color:#FFA500;text-align:center;">
Copyright © W3Schools.com</td>
</tr>
</table>
</body>
</html>
HTML Table layouts
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_layout.asp
HTML Table layouts
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_layout.asp
● Table layout is the old way to create layout of web
● Tables were designed for presenting tabular data -
NOT as a layout tool!
HTML Layouts with <div>
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_layout.asp
<!DOCTYPE html>
<html>
<body>
<div id="container" style="width:500px">
<div id="header" style="background-color:#FFA500;">
<h1 style="margin-bottom:0;">Main Title of Web Page</h1>
</div>
<div id="menu" style="background-color:#FFD700;height:200px;width:100px;float:left;">
<b>Menu</b><br>HTML<br>CSS<br>JavaScript
</div>
<div id="content" style="background-color:#EEEEEE;height:200px;width:400px;float:
left;">Content goes here</div>
<div id="footer" style="background-color:#FFA500;clear:both;text-align:center;">
Copyright © W3Schools.com</div>
</div>
</body>
</html>
HTML Layouts with <div>
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_layout.asp
HTML Forms and Inputs
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_forms.asp
● <form> are used to pass data to a server.
● <input> is used to select user information.
<form>
First name: <input type="text" name="firstname"><br>
Last name: <input type="text" name="lastname">
</form>
HTML Forms and Inputs
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_forms.asp
● Text Field : <input type="text"> defines a one-line input field that a user
can enter text into.
name: <input type="text" name="name"
>
● Password : <input type="password"> defines a password field
Password: <input type="password"
name="pwd">
HTML Forms and Inputs
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_forms.asp
● Radio Button : <input type="radio"> that let a user select ONLY ONE of
a limited number of choices.
<input type="radio" name="sex" value="male"
>Male<br>
<input type="radio" name="sex" value="
female">Female
● Checkbox : <input type="password"> that let a user select ZERO or
MORE options of a limited number of choices.
<input type="checkbox" name="vehicle"
value="Bike">I have a bike<br>
<input type="checkbox" name="vehicle"
value="Car">I have a car
HTML Forms and Inputs
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_forms.asp
● Submit : <input type="submit"> is used to send form data to a server.
<form name="input" action="html_form_action.asp" method="get">
Username: <input type="text" name="user">
<input type="submit" value="Submit">
</form>
HTML Color Values
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_colors.asp
● HTML using a hexadecimal notation (HEX) for the combination of Red,
Green, and Blue color values (RGB).
HTML Color Values
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_colornames.asp
● 141 color names are defined in the HTML and CSS color specification (17
standard colors plus 124 more)
● The 17 standard colors are: aqua, black, blue, fuchsia, gray, green, lime,
maroon, navy, olive, orange, purple, red, silver, teal, white, and yellow.
HTML Entities
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/tags/ref_entities.asp
HTML Quick List
BASIC HTML for Web Designer by Niciuzza, nicha.in.th
Ref: http://www.w3schools.com/html/html_quick.asp
Enjoy
and
May HTML be with You.
BASIC HTML for Web Designer by Niciuzza, nicha.in.th

More Related Content

PPTX
Learn html Basics
McSoftsis
 
PPTX
Ethernet Computer network
miteshppt
 
PPTX
Screenless Display PPT Presentation
Sai Mohith
 
PPT
Html Ppt
vijayanit
 
PPTX
Basic HTML
Sayan De
 
PPTX
Being an Academic Advisor
SHU Learning & Teaching
 
PPTX
GRPC.pptx
Afzal Juneja
 
PDF
Internet and Email -O/L ICT
Mahesh Kodituwakku
 
Learn html Basics
McSoftsis
 
Ethernet Computer network
miteshppt
 
Screenless Display PPT Presentation
Sai Mohith
 
Html Ppt
vijayanit
 
Basic HTML
Sayan De
 
Being an Academic Advisor
SHU Learning & Teaching
 
GRPC.pptx
Afzal Juneja
 
Internet and Email -O/L ICT
Mahesh Kodituwakku
 

What's hot (20)

PPTX
Html ppt
santosh lamba
 
PDF
Intro to HTML and CSS basics
Eliran Eliassy
 
PPT
Introduction to CSS
Amit Tyagi
 
PPTX
Cascading style sheet
Michael Jhon
 
PPSX
Html introduction
Dalia Elbadry
 
PPTX
(Fast) Introduction to HTML & CSS
Dave Kelly
 
PPTX
Html
Nisa Soomro
 
PPT
Introduction to JavaScript (1).ppt
MuhammadRehan856177
 
PPTX
Html5 tutorial for beginners
Singsys Pte Ltd
 
PPTX
Html ppt
Ruchi Kumari
 
PPT
Introduction to Cascading Style Sheets (CSS)
Chris Poteet
 
ODP
HTML5
Hatem Mahmoud
 
PPT
Introduction to HTML
MayaLisa
 
PDF
Html frames
eShikshak
 
PPTX
Dynamic HTML (DHTML)
Himanshu Kumar
 
PPTX
Html, CSS & Web Designing
Leslie Steele
 
PPTX
HTML
chinesebilli
 
PDF
Web Development with HTML5, CSS3 & JavaScript
Edureka!
 
PDF
Html / CSS Presentation
Shawn Calvert
 
Html ppt
santosh lamba
 
Intro to HTML and CSS basics
Eliran Eliassy
 
Introduction to CSS
Amit Tyagi
 
Cascading style sheet
Michael Jhon
 
Html introduction
Dalia Elbadry
 
(Fast) Introduction to HTML & CSS
Dave Kelly
 
Introduction to JavaScript (1).ppt
MuhammadRehan856177
 
Html5 tutorial for beginners
Singsys Pte Ltd
 
Html ppt
Ruchi Kumari
 
Introduction to Cascading Style Sheets (CSS)
Chris Poteet
 
Introduction to HTML
MayaLisa
 
Html frames
eShikshak
 
Dynamic HTML (DHTML)
Himanshu Kumar
 
Html, CSS & Web Designing
Leslie Steele
 
Web Development with HTML5, CSS3 & JavaScript
Edureka!
 
Html / CSS Presentation
Shawn Calvert
 
Ad

Viewers also liked (20)

PPTX
Html basic
Nital Shingala
 
KEY
HTML presentation for beginners
jeroenvdmeer
 
PDF
[Basic HTML/CSS] 1. html - basic tags
Hyejin Oh
 
ODP
How to Make HTML and CSS Files
LearningNerd
 
PDF
HTML Basic
Ryan Chung
 
PPT
Introduction to html
vikasgaur31
 
PPTX
Digital Pulse Summit - Marketing with Mobile in Mind & Its Effect on Social &...
Digital Clarity Group
 
PPTX
Front End Web Development Basics
Tahir Shahzad
 
PDF
Girls Can Code - 2/10/17
Kayla Leung
 
PDF
[Basic HTML/CSS] 7. project
Hyejin Oh
 
PDF
Girls Can Code - 1/27/17
Kayla Leung
 
PPT
Html basic
Charitha Bandara
 
PPT
Basics of Html
Arslan Butt
 
PPT
Basic html
Drew Eric Noftle
 
DOCX
Lesson plan: HTML Formatting Texts and Paragraphs
Keith Borgonia Manatad
 
PDF
separating content and layout, HTML CSS and some web history
Lon Barfield
 
PPT
Learn HTML & CSS From Scratch in 30 Days
Jonathan Grover
 
PDF
ICT for Teachers in Basic Education
ischool webboard
 
PDF
HTML CSS Basics
Mai Moustafa
 
PPTX
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
Html basic
Nital Shingala
 
HTML presentation for beginners
jeroenvdmeer
 
[Basic HTML/CSS] 1. html - basic tags
Hyejin Oh
 
How to Make HTML and CSS Files
LearningNerd
 
HTML Basic
Ryan Chung
 
Introduction to html
vikasgaur31
 
Digital Pulse Summit - Marketing with Mobile in Mind & Its Effect on Social &...
Digital Clarity Group
 
Front End Web Development Basics
Tahir Shahzad
 
Girls Can Code - 2/10/17
Kayla Leung
 
[Basic HTML/CSS] 7. project
Hyejin Oh
 
Girls Can Code - 1/27/17
Kayla Leung
 
Html basic
Charitha Bandara
 
Basics of Html
Arslan Butt
 
Basic html
Drew Eric Noftle
 
Lesson plan: HTML Formatting Texts and Paragraphs
Keith Borgonia Manatad
 
separating content and layout, HTML CSS and some web history
Lon Barfield
 
Learn HTML & CSS From Scratch in 30 Days
Jonathan Grover
 
ICT for Teachers in Basic Education
ischool webboard
 
HTML CSS Basics
Mai Moustafa
 
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
Ad

Similar to Basic html (20)

PDF
Html and html5 cheat sheets
Zafer Galip Ozberk
 
PPTX
Html Workshop
vardanyan99
 
PPTX
Introduction to HTML5
Terry Ryan
 
PDF
Zen
Inna Tuyeva
 
PDF
Zen based theming
Drupal Camp Kyiv
 
PPTX
1812010023 web developement(ANKITA OJHA)CSE4(A).pptx
HarshJaiswal535013
 
PPTX
Building the basics (WordPress Ottawa 2014)
Christopher Ross
 
PDF
Hypertext_markup_language
Ishaq Shinwari
 
PPTX
Frontend Devlopment internship batch 2024.pptx
bankheleom
 
PPTX
Frontend Devlopment internship batch 2024-2.pptx
bankheleom
 
DOCX
Caracteristicas Basicas De Htlm
Maria S Rivera
 
KEY
Html intro
Robyn Overstreet
 
PPTX
Web design and Development
Shagor Ahmed
 
DOCX
Lesson A.1 - Introduction to Web Development.docx
MarlonMagtibay3
 
PPTX
Diazo: Bridging Designers and Programmers
TsungWei Hu
 
PDF
Class 1 handout (2) html exercises
Erin M. Kidwell
 
KEY
Semantic HTML5
Terry Ryan
 
PPTX
Web technologies: Lesson 2
nhepner
 
PPTX
HTML - hypertext markup language
Basmaa Mostafa
 
Html and html5 cheat sheets
Zafer Galip Ozberk
 
Html Workshop
vardanyan99
 
Introduction to HTML5
Terry Ryan
 
Zen based theming
Drupal Camp Kyiv
 
1812010023 web developement(ANKITA OJHA)CSE4(A).pptx
HarshJaiswal535013
 
Building the basics (WordPress Ottawa 2014)
Christopher Ross
 
Hypertext_markup_language
Ishaq Shinwari
 
Frontend Devlopment internship batch 2024.pptx
bankheleom
 
Frontend Devlopment internship batch 2024-2.pptx
bankheleom
 
Caracteristicas Basicas De Htlm
Maria S Rivera
 
Html intro
Robyn Overstreet
 
Web design and Development
Shagor Ahmed
 
Lesson A.1 - Introduction to Web Development.docx
MarlonMagtibay3
 
Diazo: Bridging Designers and Programmers
TsungWei Hu
 
Class 1 handout (2) html exercises
Erin M. Kidwell
 
Semantic HTML5
Terry Ryan
 
Web technologies: Lesson 2
nhepner
 
HTML - hypertext markup language
Basmaa Mostafa
 

Recently uploaded (20)

PPTX
A Smarter Way to Think About Choosing a College
Cyndy McDonald
 
PPTX
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
PPTX
Measures_of_location_-_Averages_and__percentiles_by_DR SURYA K.pptx
Surya Ganesh
 
PPTX
How to Track Skills & Contracts Using Odoo 18 Employee
Celine George
 
PPTX
Virus sequence retrieval from NCBI database
yamunaK13
 
PPTX
Command Palatte in Odoo 18.1 Spreadsheet - Odoo Slides
Celine George
 
PPTX
HEALTH CARE DELIVERY SYSTEM - UNIT 2 - GNM 3RD YEAR.pptx
Priyanshu Anand
 
PPTX
CONCEPT OF CHILD CARE. pptx
AneetaSharma15
 
PDF
The-Invisible-Living-World-Beyond-Our-Naked-Eye chapter 2.pdf/8th science cur...
Sandeep Swamy
 
PPTX
An introduction to Prepositions for beginners.pptx
drsiddhantnagine
 
PPTX
Care of patients with elImination deviation.pptx
AneetaSharma15
 
PDF
Health-The-Ultimate-Treasure (1).pdf/8th class science curiosity /samyans edu...
Sandeep Swamy
 
PPTX
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
PPTX
INTESTINALPARASITES OR WORM INFESTATIONS.pptx
PRADEEP ABOTHU
 
PDF
Module 2: Public Health History [Tutorial Slides]
JonathanHallett4
 
PDF
Virat Kohli- the Pride of Indian cricket
kushpar147
 
PPTX
Gupta Art & Architecture Temple and Sculptures.pptx
Virag Sontakke
 
PPTX
Continental Accounting in Odoo 18 - Odoo Slides
Celine George
 
PPTX
family health care settings home visit - unit 6 - chn 1 - gnm 1st year.pptx
Priyanshu Anand
 
PPTX
Applications of matrices In Real Life_20250724_091307_0000.pptx
gehlotkrish03
 
A Smarter Way to Think About Choosing a College
Cyndy McDonald
 
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
Measures_of_location_-_Averages_and__percentiles_by_DR SURYA K.pptx
Surya Ganesh
 
How to Track Skills & Contracts Using Odoo 18 Employee
Celine George
 
Virus sequence retrieval from NCBI database
yamunaK13
 
Command Palatte in Odoo 18.1 Spreadsheet - Odoo Slides
Celine George
 
HEALTH CARE DELIVERY SYSTEM - UNIT 2 - GNM 3RD YEAR.pptx
Priyanshu Anand
 
CONCEPT OF CHILD CARE. pptx
AneetaSharma15
 
The-Invisible-Living-World-Beyond-Our-Naked-Eye chapter 2.pdf/8th science cur...
Sandeep Swamy
 
An introduction to Prepositions for beginners.pptx
drsiddhantnagine
 
Care of patients with elImination deviation.pptx
AneetaSharma15
 
Health-The-Ultimate-Treasure (1).pdf/8th class science curiosity /samyans edu...
Sandeep Swamy
 
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
INTESTINALPARASITES OR WORM INFESTATIONS.pptx
PRADEEP ABOTHU
 
Module 2: Public Health History [Tutorial Slides]
JonathanHallett4
 
Virat Kohli- the Pride of Indian cricket
kushpar147
 
Gupta Art & Architecture Temple and Sculptures.pptx
Virag Sontakke
 
Continental Accounting in Odoo 18 - Odoo Slides
Celine George
 
family health care settings home visit - unit 6 - chn 1 - gnm 1st year.pptx
Priyanshu Anand
 
Applications of matrices In Real Life_20250724_091307_0000.pptx
gehlotkrish03
 

Basic html

  • 1. Basic <HTML> from w3school lessons by Niciuzza, nicha.in.th
  • 2. Hyper Text Markup Language = HTML BASIC HTML for Web Designer by Niciuzza, nicha.in.th
  • 3. <!DOCTYPE html> <head> </head> <body> <div class="wrapper"> <header id="logocompany"> <h1 id="wegetlogo"><a href="" title=" WeGetHosting.com"><img src="img/logo.png" alt=" WeGetHosting.com"></a></h1> </header> ..... </div> </body> </html> HTML is a markup language BASIC HTML for Web Designer by Niciuzza, nicha.in.th
  • 4. HTML is a markup language BASIC HTML for Web Designer by Niciuzza, nicha.in.th
  • 5. HTML have many many BASIC HTML for Web Designer by Niciuzza, nicha.in.th TAGS
  • 6. <tagname>content</tagname> BASIC HTML for Web Designer by Niciuzza, nicha.in.th TAGs are usually place inside <Angle Brackets>
  • 7. a TAG means a type of content BASIC HTML for Web Designer by Niciuzza, nicha.in.th <p> = Paragraph <a> = Anchor Link <h1> = Header 1
  • 8. HTML documents contain TAGs & TEXTs BASIC HTML for Web Designer by Niciuzza, nicha.in.th
  • 9. HTML documents is Web Page BASIC HTML for Web Designer by Niciuzza, nicha.in.th
  • 10. BASIC HTML for Web Designer by Niciuzza, nicha.in.th <!DOCTYPE html> <head> </head> <body> <div class="wrapper"> <header id=" logocompany"> <h1 id="logo"><a href="" title="P&THosting.com" ><img src="img/logo.png" alt=" WeGetHosting.com"></a></h1> </header> ..... </div> </body> </html>
  • 11. HTML page structure BASIC HTML for Web Designer by Niciuzza, nicha.in.th <html> </html> <body> </body> <h1>This a heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p>
  • 12. HTML HTML Versions BASIC HTML for Web Designer by Niciuzza, nicha.in.th 1991 1993 1995 1997 1999 2000 2012 2013
  • 13. <!DOCTYPE> BASIC HTML for Web Designer by Niciuzza, nicha.in.th <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> HTML 4.01 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1- transitional.dtd"> XHTML 1.0 <!DOCTYPE html> HTML5
  • 14. HTML Tags You Must Know BASIC HTML for Web Designer by Niciuzza, nicha.in.th ● Headings ● Paragraphs ● Link ● Image <h1>This is Heading</h1> <p>This is Paragraph</p> <a href="http://nicha.in.th">This is a link</a> <img src="w3schools.jpg" width="104" height="142">
  • 15. <p>Hello World</p> BASIC HTML for Web Designer by Niciuzza, nicha.in.th open TAG Content close TAG HTML Elements
  • 16. HTML Element Syntax BASIC HTML for Web Designer by Niciuzza, nicha.in.th <a href="default.htm">This is a link</a> <img src="w3schools.jpg" width="104" height="142" />
  • 17. HTML Element Nested BASIC HTML for Web Designer by Niciuzza, nicha.in.th <html> </html> <body> </body> <h1>This a heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p>
  • 18. HTML Attributes BASIC HTML for Web Designer by Niciuzza, nicha.in.th <a href="nicha.in.th">This is a link</a> href = a attribute of <a> Attributes Value should be inside "Double Quote" or 'Single Quote'. But Double Quote is Recommended.
  • 19. HTML Attributes BASIC HTML for Web Designer by Niciuzza, nicha.in.th <img src="pic.jpg" width="104" height="142"> One Tag may have many attributes
  • 20. HTML Attributes that can use in any tags BASIC HTML for Web Designer by Niciuzza, nicha.in.th class: Specifies one or more classnames for an element id: Specifies a unique id for an element style: Specifies an inline CSS style for an element title: Specifies extra information about an element (displayed as a tool tip)
  • 21. <h1>HTMl H1 Heading</h1> <h2>HTML H2 Heading</h2> <h3>HTML H3 Heading</h3> <h4>HTML H4 Heading</h4> <h5>HTML H5 Heading</h5> <h6>HTML H6 Heading</h6> HTML Heading BASIC HTML for Web Designer by Niciuzza, nicha.in.th HTMl H1 Heading HTML H2 Heading HTML H3 Heading HTML H4 Heading HTML H5 Heading HTML H6 Heading ● Don't use Heading for Bold or Big text. ● Use them as a hierarchy.
  • 22. <!-- This is a comment --> HTML Comments BASIC HTML for Web Designer by Niciuzza, nicha.in.th ● Comments make code more readable and understandable. ● Comments are ignored by the browser and are not displayed.
  • 23. <p>This is a paragraph. Tincidunt pellentesque ridiculus, dignissim nec! Tincidunt et proin porttitor? Augue ac cras! Integer augue sit turpis magna et dolor cras.</p> HTML Paragraphs BASIC HTML for Web Designer by Niciuzza, nicha.in.th Line Break. <br> This is a paragraph. Tincidunt pellentesque ridiculus, dignissim nec! Tincidunt et proin porttitor? Augue ac cras! Integer augue sit turpis magna et dolor cras. <p>This is a paragraph.<br> Tincidunt pellentesque ridiculus, dignissim nec!<br> Tincidunt et proin porttitor? <br> Augue ac cras! Integer augue sit turpis magna et dolor cras.</p> This is a paragraph. Tincidunt pellentesque ridiculus, dignissim nec! Tincidunt et proin porttitor? Augue ac cras! Integer augue sit turpis magna et dolor cras.
  • 24. <p><b>This text is bold</b></p> <p><strong>This text is strong</strong></p> <p><i>This text is italic</i></p> <p><em>This text is emphasized</em></p> HTML Text Formatting BASIC HTML for Web Designer by Niciuzza, nicha.in.th This text is bold This text is strong This text is italic This text is emphasized
  • 25. <p><b>This text is bold</b></p> <p><strong>This text is strong</strong></p> <p><i>This text is italic</i></p> <p><em>This text is emphasized</em></p> HTML Text Formatting BASIC HTML for Web Designer by Niciuzza, nicha.in.th ● Many Browsers Often renders <strong> as <b>, and <em> as <i>. ● <strong>, <em> mean "Important". ● <b>, <i> defines bold or italic text only. Ref: http://www.w3schools.com/html/html_formatting.asp
  • 26. <a href="url">Link text</a> HTML Links BASIC HTML for Web Designer by Niciuzza, nicha.in.th ● <a> defines a hyperlink. ● Hyperlink is a word, group of words, or image that you can click on to jump to another document. Link text
  • 27. <!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> The content of the document...... </body> </html> HTML <head>&<title> BASIC HTML for Web Designer by Niciuzza, nicha.in.th ● <head> instruct the browser where to find style sheets, provide meta information, and more. ● <title> defines the title of the document.
  • 28. <head> <link rel="stylesheet" type="text/css" href="mystyle.css"> </head> HTML <link>,<style> BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_head.asp ● <link> instruct the browser where to find style sheets or script. ● <style> is used to define style information for an HTML document <head> <style type="text/css"> body {background-color:yellow} p {color:blue} </style> </head>
  • 29. <img src="picture_url" alt="some_text"> HTML Images BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_images.asp <img> is empty, it contains attributes only and no closing tag. <img> Attributes ● src = source (of image) ● alt = alternate text for an image, This text will show when image doesn't display. ● width = width of image ● height = height of image
  • 30. <table border="1"> <tr> <td>First</td> <td>Row</td> </tr> <tr> <td>Second</td> <td>Row</td> </tr> </table> HTML Table BASIC HTML for Web Designer by Niciuzza, nicha.in.th ● A table is divided into rows with <tr> ("table row"). ● each row is divided into data cells with <td> ("table data") and contain the data of the table which can be text, links, images, lists, forms, other tables, etc.
  • 31. <table border="1" cellpadding="10" > <tr> <td>First</td> <td>Row</td> </tr> <tr> <td>Second</td> <td>Row</td> </tr> </table> HTML Table Attribute BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_tables.asp ● border = border of the table ● cellspacing = space between each cells ● cellpadding = space inside each cells <table border="1" cellspacing="10" > <tr> <td>First</td> <td>Row</td> </tr> <tr> <td>Second</td> <td>Row</td> </tr> </table>
  • 32. HTML Order Lists BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_lists.asp ● <ol> is defined as order list. ● <li> is under <ol>, defined as each list item. <ol> <li>The first list item </li> <li>The second list item </li> <li>The third list item </li> </ol>
  • 33. HTML Unorder Lists BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_lists.asp ● <ul> is defined as Unorder List. ● <li> is under <ul>, defined as each list item. <ul> <li>The first list item </li> <li>The second list item </li> <li>The third list item </li> </ul>
  • 34. HTML Description Lists BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_lists.asp ● <dl> is defined as Description List. ● <dt> is under <dl>, defined as terms/names. ● <dd> is defined as description of each term/name. <dl> <dt>Coffee</dt> <dd>- black hot drink</dd> <dt>Milk</dt> <dd>- white cold drink</dd> </dl>
  • 35. HTML Nested Lists BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_lists.asp <ul> <li>Coffee</li> <li>Tea <ul> <li>Black tea</li> <li>Green tea <ul> <li>China</li> <li>Africa</li> </ul> </li> </ul> </li> <li>Milk</li> </ul>
  • 36. HTML Block Element BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_blocks.asp ● Block level elements normally start (and end) with a new line. ● Examples: <h1>, <p>, <ul>, <table>, etc.
  • 37. HTML Inline Element BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_blocks.asp ● Inline elements are normally displayed without starting a new line. ● Examples: <b>, <td>, <a>, <img>
  • 38. HTML <div> BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_blocks.asp ● <div> is Block Elements. ● <div> is used as a container for grouping other HTML elements. ● <div> is used for creating layout of web instead of using <table>
  • 39. HTML <span> BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_blocks.asp ● <span> is Inline Elements. ● <span> is used as a container for text.
  • 40. HTML Table layouts BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_layout.asp <!DOCTYPE html> <html> <body> <table width="500" border="0"> <tr> <td colspan="2" style="background-color:#FFA500;"> <h1>Main Title of Web Page</h1> </td> </tr> <tr> <td style="background-color:#FFD700;width:100px;"> <b>Menu</b><br>HTML<br>CSS<br>JavaScript </td> <td style="background-color:#EEEEEE;height:200px;width:400px;"> Content goes here</td> </tr> <tr> <td colspan="2" style="background-color:#FFA500;text-align:center;"> Copyright © W3Schools.com</td> </tr> </table> </body> </html>
  • 41. HTML Table layouts BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_layout.asp
  • 42. HTML Table layouts BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_layout.asp ● Table layout is the old way to create layout of web ● Tables were designed for presenting tabular data - NOT as a layout tool!
  • 43. HTML Layouts with <div> BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_layout.asp <!DOCTYPE html> <html> <body> <div id="container" style="width:500px"> <div id="header" style="background-color:#FFA500;"> <h1 style="margin-bottom:0;">Main Title of Web Page</h1> </div> <div id="menu" style="background-color:#FFD700;height:200px;width:100px;float:left;"> <b>Menu</b><br>HTML<br>CSS<br>JavaScript </div> <div id="content" style="background-color:#EEEEEE;height:200px;width:400px;float: left;">Content goes here</div> <div id="footer" style="background-color:#FFA500;clear:both;text-align:center;"> Copyright © W3Schools.com</div> </div> </body> </html>
  • 44. HTML Layouts with <div> BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_layout.asp
  • 45. HTML Forms and Inputs BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_forms.asp ● <form> are used to pass data to a server. ● <input> is used to select user information. <form> First name: <input type="text" name="firstname"><br> Last name: <input type="text" name="lastname"> </form>
  • 46. HTML Forms and Inputs BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_forms.asp ● Text Field : <input type="text"> defines a one-line input field that a user can enter text into. name: <input type="text" name="name" > ● Password : <input type="password"> defines a password field Password: <input type="password" name="pwd">
  • 47. HTML Forms and Inputs BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_forms.asp ● Radio Button : <input type="radio"> that let a user select ONLY ONE of a limited number of choices. <input type="radio" name="sex" value="male" >Male<br> <input type="radio" name="sex" value=" female">Female ● Checkbox : <input type="password"> that let a user select ZERO or MORE options of a limited number of choices. <input type="checkbox" name="vehicle" value="Bike">I have a bike<br> <input type="checkbox" name="vehicle" value="Car">I have a car
  • 48. HTML Forms and Inputs BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_forms.asp ● Submit : <input type="submit"> is used to send form data to a server. <form name="input" action="html_form_action.asp" method="get"> Username: <input type="text" name="user"> <input type="submit" value="Submit"> </form>
  • 49. HTML Color Values BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_colors.asp ● HTML using a hexadecimal notation (HEX) for the combination of Red, Green, and Blue color values (RGB).
  • 50. HTML Color Values BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_colornames.asp ● 141 color names are defined in the HTML and CSS color specification (17 standard colors plus 124 more) ● The 17 standard colors are: aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, orange, purple, red, silver, teal, white, and yellow.
  • 51. HTML Entities BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/tags/ref_entities.asp
  • 52. HTML Quick List BASIC HTML for Web Designer by Niciuzza, nicha.in.th Ref: http://www.w3schools.com/html/html_quick.asp
  • 53. Enjoy and May HTML be with You. BASIC HTML for Web Designer by Niciuzza, nicha.in.th