-
Notifications
You must be signed in to change notification settings - Fork 1
/
codeSampleTemplate-HTML5.html
45 lines (42 loc) · 1.13 KB
/
codeSampleTemplate-HTML5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, minimal-ui">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="../style.css">
<title>Button Element</title>
</head>
<body>
<!-- Header w/ breadcrumb (Adjust breadcrumb links as needed) -->
<header role="banner">
<nav role="navigation">
<a href="../index.html">Home</a> > <a href="html5.html">HTML5</a>
</nav>
<hr>
</header>
<main role="main">
<h1>Button Element</h1>
<!-- Component start -->
<button type="button">Press Me!</button>
<!-- Component end -->
</main>
<footer role="contentinfo">
<hr>
<h3>Tested on:</h3>
<div>
<ul>
<li>iOS 9.01
<ul>
<li>Passed: Reads properly</li>
</ul>
</li>
<li>iOS 8.4
<ul>
<li>Passed: Reads properly</li>
</ul>
</li>
</ul>
</div>
</footer>
</body>
</html>