forked from lameesad/HTML5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
58 lines (44 loc) · 1.69 KB
/
about.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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>HTML5</title>
<link rel="stylesheet" href="assets/css/style.css">
<!-- <script src="assets/js/scripts.js"></script> -->
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="educate.html">Educate</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<h1> About </h1>
<article>
<p class="center">HTML5 its commonly the next version which includes New shortened doctype
Array of semantic tags (ex:header, footer)
Form support, native audio and video
Canvas for creating graphics and complicated games
JavaScript API s (geolocation, drag and drop, web workers and local storage)
</p>
</article>
<img src="images/learn.jpg" width="80%" height="500px">
<section>
<p class="title"> History HTML5</p>
<p class="center">Right around the period that HTML advanced to version 4.01
(around 1998), the ground began to shift a bit. Developers started
to talk about this next new thing the W3C was working on: XHTML,
which stood for “Extensible Hypertext Markup Language.” This first
1.0 specification was more or less identical to HTML 4.01, other
than the inclusion of a new MIME type, application/xhtml+xml.
</p>
</section>
<img src="images/htm5.jpg" width="100%" height="500px">
<footer>
<span>HTML5 template by Lamees</span>
</footer>
</body>
</html>