-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabouthtml.html
71 lines (68 loc) · 4.85 KB
/
abouthtml.html
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
<!DOCTYPE html>
<html>
<title> About HTML</title>
<head>
<style>
th{
color:red;
}
</style>
</head>
<body style="background-image:linear-gradient(to right,#ffafbd, #ffc3a0);">
<p><h1 style="color:#000000;font-family:calibri;"><b>HTML</b></h1></p>
<p><hr></hr></p>
<p>
<ul style="font-size:22px; font-family:calibri;">
<li>First developed by Tim Berners-Lee in 1990, HTML is short for Hypertext Markup Language.</li><li>HTML is used to create electronic documents (called pages) that are displayed on the World Wide Web.</li><li>Each page contains a series of connections to other pages called hyperlinks.</li><li>Every web page you see on the Internet is written using one version of HTML code or another.</li>
<li>HTML code ensures the proper formatting of text and images so that your Internet /tdowser may display them as they are intended to look.</li><li>Without HTML, a /tdowser would not know how to display text as elements or load images or other elements.</li><li>HTML also provides a basic structure of the page, upon which Cascading Style Sheets are overlaid to change its appearance.</li><li>One could think of HTML as the bones (structure) of a web page, and CSS as its skin (appearance).</li></ul></p>
<p><h2 style="color:#000000;font-family:calibri;"></td>HTML Tags</h2></p>
<p><hr></hr></p>
<p style="font-size:22px;font-family:calibri;">HTML tags < > are also known as elements which are made to desig the particular information or any accessble object of a webpage.<br>These tags allow a web developer to work on thier websites. There are many basic and many advanced tags in HTML according to our own purposes that what we need.<br>Further, these tags are the basic structure units of a webpage and a website that we see on the internet and media.</p>
<p><h2 style="color:#000000;font-family:calibri;"><br> Various HTML Tags</h2></p>
<p><hr></hr></p>
<p>
<table style="font-size:18px; font-family:calibri"><tr><th><!DOCTYPE></th><td> Defines the document type</td></tr>
<th><html></th> <td>Defines an HTML document</td></tr>
<th><head></th> <td>Defines information about the document</td></tr>
<th><title></th> <td>Defines a title for the document</td></tr></tr>
<th><body></th> <td>Defines the document's body</td></tr>
<th><h1> to <h6> </th><td>Defines HTML headings</td></tr>
<th><p> </th><td>Defines a paragraph</td></tr>
<th></td></th> <td>Inserts a single line /tdeak</td></tr>
<th><hr></th> <td>Defines a thematic change in the content</td></tr>
<th><!--...--></th> <td>Defines a comment</td></tr>
<th><ab/td></th><td> Defines an ab/tdeviation or an acronym</td></tr>
<th><b> </th><td>Defines bold text</td></tr>
<th><blockquote> </th> <td>Defines a section that is quoted from another source</td></tr>
<th><center></th> <td>Align the text or paragraph at center</td></tr>
<th><mark></th> <td>Defines marked/highlighted text</td></tr>
<th><pre></th><td> Defines preformatted text</td></tr>
<th><samp></th> <td>Defines sample output from a computer program</td></tr>
<th><small></th> <td>Defines smaller text</td></tr>
<th><strike></th> <td>Defines strikethrough text</td></tr>
<th><th></th><td> Defines important text</td></tr>
<th><sub></th> <td>Defines subscripted text</td></tr>
<th><sup></th> <td>Defines superscripted text</td></tr>
<th><form></th> <td>Defines an HTML form for user input</td></tr>
<th><input></th> <td>Defines an input control</td></tr>
<th><textarea></th> <td>Defines a multiline input control (text area)</td></tr>
<th><button></th><td> Defines a clickable button</td></tr>
<th><img></th> <td>Defines an image</td></tr>
<th><map></th> <td>Defines a client-side image-map</td></tr>
<th><area></th> <td>Defines an area inside an image-map</td></tr>
<th><a></th> <td>Defines a hyperlink</td></tr>
<th><link></th> <td>Defines the relationship between a document and an external resource (most used to link to style sheets)</td></tr>
<th><ul></th> <td>Defines an unordered list</td></tr>
<th><ol></th><td> Defines an ordered list</td></tr>
<th><li></th> <td>Defines a list item</td></tr>
<th><table></th><td> Defines a table</td></tr>
<th><caption></th> <td>Defines a table caption</td></tr>
<th><th></th><td> Defines a header cell in a table</td></tr>
<th><tr></th> <td>Defines a row in a table</td></tr>
<th><td></th> <td>Defines a cell in a table</td></tr>
<th><style></th><td> Defines style information for a document</td></tr>
<th><meta></th><td> Defines metadata about an HTML document</td></tr>
</table>
</p>
</body>
</html>