-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnchor-tags.html
More file actions
82 lines (79 loc) · 4.36 KB
/
Anchor-tags.html
File metadata and controls
82 lines (79 loc) · 4.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mahantesh Brogi</title>
</head>
<body>
<h1>Mahantesh Borgi</h1>
<h2>Shree Rayeshwar Institute of Engineering and Information Technology</h2>
<a href="Lists.html"><h3>Computer Science</h3></a>
<p>
<b>HTML - Hyper Text Markup Language</b>
<br>
<p>
HTML is a computer language devised to allow website creation. These websites can then be viewed by anyone else connected to the Internet. It is relatively easy to learn, with the basics being accessible to most people in one sitting; and quite powerful in what it allows you to create. It is constantly undergoing revision and evolution to meet the demands and requirements of the growing Internet audience under the direction of the » W3C, the organisation charged with designing and maintaining the language.
The definition of HTML is HyperText Markup Language.
HyperText is the method by which you move around on the web — by clicking on special text called hyperlinks which bring you to the next page. The fact that it is hyper just means it is not linear — i.e. you can go to any place on the Internet whenever you want by clicking on links — there is no set order to do things in.
Markup is what HTML tags do to the text inside them. They mark it as a certain type of text (italicised text, for example).
HTML is a Language, as it has code-words and syntax like any other language.
</p>
What is HTML?
<br>HTML stands for Hyper Text Markup Language
<br>HTML is the standard markup language for Web pages
<br>HTML elements are the building blocks of HTML pages
<br>HTML elements are represented by <> tags
<br><br>
HTML Attributes
<br>HTML elements can have attributes
<br>Attributes provide additional information about the element
<br>Attributes come in name/value pairs like charset="utf-8"
<br><br>
HTML elements are the building blocks of HTML pages.
<br>The !DOCTYPE html declaration defines this document to be HTML5
<br>The html element is the root element of an HTML page
<br>The lang attribute defines the language of the document
<br>The meta element contains meta information about the document
<br>The charset attribute defines the character set used in the document
<br>The title element specifies a title for the document
<br>The body element contains the visible page content
<br>The h1 element defines a large heading
<br>The p element defines a paragraph
<br><br>
HTML Documents
<br>All HTML documents must start with a document type declaration: !DOCTYPE html>.
<br>The HTML document itself begins with html and ends with /html.
<br>The visible part of the HTML document is between body and /body.
<br><br>
HTML Headings
<br>HTML headings are defined with h1 to h6 tags.
<br>defines the most important heading. h6 defines the least important.
<br><br>
HTML Paragraphs
<br>HTML paragraphs are defined with p tags.
<br><br>
HTML Links
<br>HTML links are defined with a tags.
<br><br>
HTML Images
<br>HTML images are defined with img tags.
<br>The source file (src), alternative text (alt), width, and height are provided as attributes.
<br><br>
HTML Buttons
<br>HTML buttons are defined with button tags.
<br><br>
HTML Lists
<br>HTML lists are defined with ul (unordered/bullet list) or ol (ordered/numbered list) tags, followed by li tags (list items).
<br><br>
HTML Tables
<br>An HTML table is defined with a table tag.
<br>Table rows are defined with tr tags.
<br>Table headers are defined with th tags. (bold and centered by default).
<br>Table cells (data) are defined with td tags.
<br><br>
Programming HTML
<br>Every HTML element can have attributes.
<br>For web development and programming, the most important attributes are id and class. These attributes are often used to address program based web page manipulations.
</p>
</body>
</html>