The notes were taken based on the tutorial from https://www.w3schools.com/html/default.asp, and the notes could be used for a quick lookup about the usage of the HTML commands.
HTML stands for Hyper Text Markup Language.
Basics
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
<p> : paragraph
<a href="https://www.w3schools.com/">This is a link</a> : link
<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142"> : image with source name in src , alternative text in alt
<button>Click me</button> : button
Lists are defined with the <ul> (unordered/bullet list) or the <ol> (ordered/numbered list) tag, followed by <li> tags (list items)
Elements consists of start tag and end tag with content in between. For example, <h1> to <h6>, <p>, <br> (empty element, defines line break, ended with <br/>) and so on.
Attributes
Attributes provide additional info for elements, and it’s specified in the start tag. For example,
<a href="http://www.w3school.com.cn">This is a link</a> specifies the href attribute.
alt attribute specifies an alternative text to be used
disabled Specifies that an input element should be disabled
id Specifies a unique id for an element
src Specifies the URL (web address) for an image
style attribute is used to specify the styling of an element, like color, font, size etc. For example,
<p style="color:red">I am a paragraph</p>
The language is declared with the lang attribute.
A title attribute is added to the <p> element. The value of the title attribute will be displayed as a tooltip when you mouse over the paragraph. For example,
<p title="I'm a tooltip">
This is a paragraph.
</p>
Headings
Default heading size can be altered by the style attribute:
<h1 style="font-size:60px;">Heading 1</h1>
<hr> tag defines a thematic break in an HTML page, and is most often displayed as a horizontal rule.
<head> is a container for metadata (title, scripts, styles, meta information, and more) and will not be displayed. It is placed between the <html> tag and the <body> tag.
Paragraph
Extra spaces or lines in the HTML code won’t affect the output and the brower will remove extra spaces and lines when displayed. <pre> element defines preformatted text, any content in between this tag will be displayed in a fixed-width font and *pre*serves the spaces and line breaks.
Styles
The syntax for style is
<tagname style="property:value;">
where the property is a CSS property and the value is a CSS value.
style attribute is used for styling HTML elements
background-color property is used for background color
color property is used for text colors
font-family property is used for text fonts
font-size property is used for text sizes
text-align property for text alignment
<body style="background-color:powderblue;">
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<h1 style="color:blue;">This is a heading</h1>
<p style="color:red;">This is a paragraph.</p>
<h1 style="font-family:verdana;">This is a heading</h1>
<p style="font-family:courier;">This is a paragraph.</p>
<h1 style="font-size:300%;">This is a heading</h1>
<p style="font-size:160%;">This is a paragraph.</p>
<h1 style="text-align:center;">Centered Heading</h1>
<p style="text-align:center;">Centered paragraph.</p>
</body>
Text Formatting
Frequently used text formatting elements are:
<b> defines bold text
<em> defines emphasized text
<i> defines italic text
<small> defines smaller text
<strong> defines important text
<sub> defines subscripted text
<sup> defines superscripted text
<ins> defines inserted text
<del> defines deleted text
<mark> Defines marked/highlighted text
Quotation
<abbr> defines an abbreviation or acronym
<address> defines contact information for the author/owner of a document
<bdo> defines the text direction
<blockquote> defines a section that is quoted from another source
<cite> defines the title of a work
<q> defines a short inline quotation
<p>WWF's goal is to: <q>Build a future where people live in harmony with nature.</q></p>
<p>Here is a quote from WWF's website:</p>
<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 50 years, WWF has been protecting the future of nature.
The world's leading conservation organization,
WWF works in 100 countries and is supported by
1.2 million members in the United States and
close to 5 million globally.
</blockquote>
<p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>
<address>
Written by John Doe.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
<p><cite>The Scream</cite> by Edvard Munch. Painted in 1893.</p>
<bdo dir="rtl">This text will be written from right to left</bdo>
Comments
Comments are added to the html source by <!-- Write your comments here -->
.
CSS stands for Cascading Style Sheets. CSS describes how HTML elements are to be displayed on screen, paper, or in other media.
Use the HTML style attribute for inline styling
<h1 style="color:blue;">This is a Blue Heading</h1>
Use the HTML <style> element to define internal CSS and use the HTML <head> element to store <style> element
<html>
<head>
<style>
body {background-color: powderblue;}
h1 {color: blue;}
p {color: red;}
</style>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Use the HTML <link> element to refer to an external CSS file and use the HTML <head> element to store <style> and <link> elements
<html>
<head>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://www.w3schools.com/html/styles.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
The styles.css may look like,
body {
background-color: powderblue;
}
h1 {
color: blue;
}
p {
color: red;
}
Use the CSS color property for text colors
Use the CSS font-family property for text fonts
Use the CSS font-size property for text sizes
Use the CSS border property for borders
Use the CSS padding property for space inside the border
Use the CSS margin property for space outside the border
An id attribute to the element can be used to define a specific style for one special element.
<p id="p01">I am different</p>
#p01 {
color: blue;
}
A class attribute to the element can be used to define a style for special types of elements.
<p class="error">I am different</p>
p.error {
color: red;
}
Links
A link does not have to be text. It can be an image or any other HTML element. The syntax is,
<a href="url">link text</a>
Link color
* Local links: A local link (link to the same web site) is specified with a relative URL (without https://www....). For example,
<a href="html_images.asp">HTML Images</a>
Link colors can be defined in <style> in a CSS file,
<!--
An unvisited link is underlined and blue
A visited link is underlined and purple
An active link is underlined and red -->
<style>
a:link {
color: green;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: pink;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: red;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
</style>
targetattribute specifie where to open the linked document. _blank opens the linked document in a new window or tab, _self opens the linked document in the same window/tab as it was clicked (default), _parent opens the linked document in the parent frame, _top opens the linked document in the full body of the window, framename opens the linked document in a named frame. Example usage:
<alt> provides an alternate text for an image, if the user for some reason cannot view it. It’s a required attribute.
<width> and <height> atributes can be used directly to specify the width and height of the image in pixels. Or alternatively, use style attribute, for example, style="width:500px;height:600px;". The latter is preferred as it prevents styles sheets from changing the size of images.
Show one picture if the browser window (viewport) is a minimum of 650 pixels, and another image if not, but larger than 465 pixels.
Always specify an <img> element as the last child element of the element. In case the browser doesn’t support <picture>, or if none of the tags matched.
Tables
An HTML table is defined with the <table> tag.
<tr>: table row
<th>: table header
<td>: table data/cell, are data containers. They can contain all sorts of HTML elements; text, images, lists, other tables, etc.
Use <noscript> to provide an alternate content for users that have disabled scripts in their browser or have a browser that doesn’t support client-side scripts
<script>
document.getElementById("demo").innerHTML = "Hello JavaScript!";
</script>
<!--alternative text when javascript is not supported-->
<noscript>Sorry, your browser does not support JavaScript!</noscript>
Filepaths
<img src="picture.jpg">: picture.jpg is located in the same folder as the current page.
<img src="images/picture.jpg">: picture.jpg is located in the images folder in the current folder.
<img src="/images/picture.jpg">: picture.jpg is located in the images folder at the root of the current web.
<img src="../picture.jpg">: picture.jpg is located in the folder one level up from the current folder.
Head
<head> element is a container for metadata (for example, title, character set, styles, links, scripts, and other meta information) and is placed between the <html> tag and the <body> tag.
Frequently used tags: <title>, <style>, <meta>, <link>, <script>, and <base>.
<title>: 1. defines a title in the browser tab; 2. provides a title for the page when it is added to favorites; and 3. displays a title for the page in search engine results.
<style>defines style information for a single HTML page.
<link> links external style sheets.
<meta> element is used to specify which character set is used, page description, keywords, author, and other metadata.
<base> element specifies the base URL and base target for all relative URLs in a page.
<html>
<head>
<title>Page Title</title>
<style>
body {background-color: powderblue;}
h1 {color: red;}
p {color: blue;}
</style>
<link rel="stylesheet" href="mystyle.css">
<meta charset="UTF-8"> <!--Define character set-->
<!--a description of your web page-->
<meta name="description" content="Free Web tutorials">
<!--keywords for search engines-->
<meta name="keywords" content="HTML,CSS,XML,JavaScript">
<!--the author of a page-->
<meta name="author" content="John Doe">
<!--Refresh document every 30 seconds-->
<meta http-equiv="refresh" content="30">
<!--instructions for browser on how to control the page's dimensions and scaling.-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<base href="https://www.w3schools.com/images/" target="_blank">
</head>
<body>
<p>The content of the body element is displayed in the browser window.</p>
<p>The content of the title element is displayed in the browser tab, in favorites and in search engine results.</p>
</body>
</html>
Layout
<header> - Defines a header for a document or a section
<nav> - Defines a container for navigation links
<section> - Defines a section in a document
<article> - Defines an independent self-contained article
<aside> - Defines content aside from the content (like a sidebar)
<footer> - Defines a footer for a document or a section