-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdata.html
90 lines (79 loc) · 3.54 KB
/
data.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>W3C HTML</title>
<meta name="mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1, initial-scale = 1.0, shrink-to-fit=no">
<link rel="stylesheet" href="css/main.css">
<script async type="text/javascript" src="js/newsfeed.js"> </script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="https://www.w3.org/standards/">Standards</a></li>
<li><a href="https://www.w3.org/participate/">Participate</a></li>
<li><a href="https://www.w3.org/Consortium/membership">Membership</a></li>
<li><a href="https://www.w3.org/Consortium/">About W3C</a></li>
</ul>
</nav>
</header>
<main>
<nav>
<p><img src="logo/downloads/HTML5_Logo_64.png" width="64" height="64" alt="HTML5"></p>
<h3>Getting involved</h3>
<ul>
<li><a href="https://www.w3.org/WebPlatform/WG/PubStatus#HTML_specifications">Related specs</a></li>
<li><a href="https://github.com/w3c/html/">Github</a></li>
<li><a href="https://lists.w3.org/Archives/Public/public-html/">Mailing list</a></li>
<li><a href="https://www.w3.org/Consortium/cepc/">Code of Conduct</a></li>
</ul>
<h3>Testing</h3>
<ul>
<li><a href="http://testthewebforward.org/docs/">How to</a></li>
<li><a href='https://github.com/w3c/web-platform-tests/'>Test Suites</a></li>
</ul>
</nav>
<section id='content'>
<section id="mission">
</section>
<p>
HTML is the standard markup language used to create web pages and its elements form the building blocks of all websites.
</p>
<section id='articles'>
<article class="line">
<h3>Latest HTML 5.1</h3>
<p>
We fixed the focus navigation, removed features due to lack of implementations (e.g. <code>document.cssElementMap</code>), various cleanups, etc.
</p>
<p>
See also the complete list of <a href="https://www.w3.org/TR/2016/WD-html51-20160310/changes.html#changes-since">changes since the 10 October Public Working Draft</a>
</p>
</article>
</section>
</section>
<aside>
<h2>What is HTML?</h2>
<p>HTML is the Web’s core language for creating content for everyone to use anywhere.
<figure>
<pre style='background: #272822; color: #ffffcc; font-weight: bold; border:solid gray;border-width:.1em .1em .1em .8em; padding: 0.2em'><!<span style='color: #f92672;'>DOCTYPE</span> html>
<<span style='color: #f92672;'>html</span>>
<<span style='color: #f92672'>title</span>>Story</span></<span style='color: #f92672'>title</span>>
<<span style='color: #f92672'>h1</span>>My Story</span></<span style='color: #f92672'>h1</span>>
<<span style='color: #f92672'>p</span>>One upon a time,
…</<span style='color: #f92672'>p</span>>
</<span style='color: #f92672'>html</span>></pre>
<figcaption>Fig 1. HTML source code</figcaption>
</figure>
</aside>
</main>
<footer>
<address>
<a href="https://github.com/w3c/html/">We are on GitHub</a></address>
<p id="copyright">
<a href="https://www.w3.org/">W3C</a> - <a href="https://www.w3.org/Consortium/Legal/privacy-statement">Privacy</a> - <a href='http://www.w3.org/Consortium/Legal/ipr-notice'>Terms</a>
</p>
</footer>
</body>
</html>