-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml.html
97 lines (82 loc) · 3.64 KB
/
html.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<html>
<head>
<title>HTML & CSS notes</title>
<link rel="stylesheet"
href="css/index.css"
type="html/css">
</head>
<h1>Tags and Markups</h1>
<h5>Feburary 9<sup>th</sup> 2015</h5>
<table id="navigationBar" class="table">
<tr>
<td><a href="index.html">HOME</a></td>
<td><a href="photoshop.html">PHOTOSHOP</a></td>
<td><a href="aboutme.html">BIOGRAPHY</a></td>
<td><a href="midterm.html">MIDTERM</a></td>
</tr>
</table>
<p>
<img src = "images\html.jpg"
alt = "a picture with the letters html"
width ="300"
height="150"
title="http://www.coderdojomalahide.com" />
</p>
<body>
<h3>HTML</h3>
<p>There are many Tags that are used in Html and Css. Since i am starting to <br />
relearn how to do it why not make a website to assist others.<br />
<ul>
<li>All HTML tags have an opening and a closing tag (tags are often reffered to as elements)</li>
<li>All visible elements are included between the body tags.</li>
<li>Some tags have empty space to distinguish the eye for readers. </li>
<li><cite>HTML pages are text documnets</cite></li>
<li><cite>Opening tags can carry attributes which tell us more about the contents of that element.</cite></li>
<li><cite>Attributes require a name and a value.</cite></li>
</ul>
</p>
<p>
Most of the HTML tags are meant to represent structure for a website.<br />
When it comes to actual design of the page that can be done utilizing CSS.<br />
</p>
<h3>COMMON TAGS</h3>
<p>
<ol>
<li>The <em>html</em> tag denotes to the browser that it is an HTML file that is being read</li>
<li>The <em>p</em> tag tells the browser that it is a </li>
<li>The <em>title</em> tag adds information on the top of the browser window or on the tabs.</li>
<li>The <em>b</em> tag makes the words in between bold.</li>
<li>The <em>i</em> tag italisizes all the words in between.</li>
<li>The <em>br</em> tag is used to skip text to the next line.</li>
</ol>
And of course these are just the tip of the iceberg.
</p>
<h3>SEMANTIC MARKUPS</h3>
<p>While HTML is used to format the structure of a page semantic information can be added to place emphasis on words<br />
or to give meaning to the reader of the code such as definitions or quotations.
<ul>
<li>Qoutations marks are a type of Symantic markup using the <i>q</i> tag to denote which words should be in quotes. </li>
<li>Block quotes are also another type of semantic markup, the <i>blockquote</i> tag is used for this markup.</li>
<li>The <i>abbr</i> is used for abbreviated words and acronyms. </li>
<li>The <i>dfn</i> tag is used to indicate the defining instance of a term</li>
<li>The <i>address</i> tag is used to store general contact information for the author of the page.</li>
</ul>
</p>
<p>
<img src="images\shorttags.jpg"
alt="a picture of tags"
title="http://www.binarymoon.co.uk/2012/12/disable-php-short-tags"
width="300"
height="200" />
</p>
<hr />
<table id="footer">
<tr>
<td><sup><a href="photoshop.html">| PHOTOSHOP |</a></sup></td>
<td><sup><a href="html.html">HTML |</a></sup></td>
<td><sup><a href="aboutme.html">BIOGRAPHY |</a></sup></td>
<td><sup><a href="midterm.html">MIDTERM |</a></sup></td>
</tr>
</table>
</body>
</html>