1/43
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
HTML
stands for Hyper Text Markup Language.
HTML
is the standard markup language for creating Web pages.
It consists of series of elements.
WEB BROWSER
is a software application used to access and view web page and websites, like google chrome, mozilla, firefox and etc.
WEB PAGE
is a single document on the web, typically written in HTML and designed to be viewed in a web browser.
WEB SITE
is a collection of related web pages that are typically identified by a common domain name and published on at least one web server.
HTML ELEMENT
is defined by a start tag, some content and end tag.
HTML TAG
are the commands in HTML — like verbs in a sentence. They tell the browser what each piece of content is.
<!DOCTYPE html>
declaration defines that this document is an HTML5 document.
<html>
element is the root element of an HTML page.
<head>
element contains meta information about the HTML page.
<title>
element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab).
<body>
element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
<h1>
element defines a large heading
<p>
element defines a paragraph.
<meta>
Provides metadata such as descriptions, keywords and author.
<link>
Used to link external resources like CSS files.
<style>
Contains internal CSS for styling the document.
<script>
Contains or links to JavaScript code.
<body>
Contains the content of the document.
<header>
Defines a header for a document or section.
<nav>
Defines a set of navigation links.
<section>
Defines a section in the document.
<div>
Defines a division or section in a document.
<footer>
Defines a footer for a document or section.
<a>
Defines a hyperlink.
<img>
Embeds an image.
<ul>
Defines an unordered list.
<ol>
Defines an ordered list.
<li>
Defines a list item.
<span>
Defines a section in a document for styling purposes.
<form>
Defines an HTML form for user input.
<input>
defines an input control within a form.
<button>
defines a clickable button.
<label>
defines a label for an <input> element.
<textarea>
defines a multi-line text input control.
<select>
defines a drop-down list.
<option>
defines an option in a drop-down list.
<table>
defines a table.
<tr>
defines a row in a table.
<td>
defines a cell in a table.
<th>
defines a header cell in a table.
<thead>
groups the header content in a table.
<tbody>
groups the body content in a table.
<tfoot>
groups the footer content in a table.