abdibedaso / HTML

HTML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HTML

=================

HTML Tag Structure

HTML page, 1 - Structure folder in the file part1.html.

<!doctype html>
<html>
	<head>
		<title>
			My Website
		</title>
	</head>
	<body>
		Hello, World!	
	</body>
</html>

• DOCTYPE tag tells browser the HTML version. • The header describes the page and the body contains the page's contents.

=================

Web Page Metadata

Information describing the page.

<meta charset="utf-8"/>
<meta name="description" content=“Learn HTML"/>
<meta name="keywords" content=“HTML,CSS"/>
<meta name=“viewport" content=“width=device-width, initial-scale=1.0"/>

• Placed in the head section of your HTML page

=================

Favorites icon - favicon

Icon for browser title bar and Bookmarks.

<link href="https://avatars.githubusercontent.com/u/86274569?v=4" type="MIME type" rel=“relationship"/>
<link href="https://avatars.githubusercontent.com/u/86274569?v=4" type="image/gif" rel="shortcut icon"/>

• Placed in the head section of your HTML page.

=================

HTML Elements

Element starting on a new line and that takes up the full width available.

• Paragraph • Headings • Images • links • Ordered List • UnOrdered List • Definition List • Block Quote • Quote • Abbrevation • Code • Phrase • Preformatted Text • Tables • Horizontal Rule • Line Break


HTML


Author: Abdi T. Bedaso
September, 2021

About

HTML


Languages

Language:HTML 100.0%