forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtype.html
More file actions
33 lines (30 loc) · 910 Bytes
/
type.html
File metadata and controls
33 lines (30 loc) · 910 Bytes
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
<!DOCTYPE html>
<html ng-app="ionic">
<head>
<script src="../../dist/js/ionic.bundle.js"></script>
<meta charset="utf-8">
<title>Type</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<link href="../../dist/css/ionic.css" rel="stylesheet">
<style>
* {
overflow: hidden;
}
</style>
</head>
<body>
<header class="bar bar-header bar-dark">
<h1 class="title">Type</h1>
</header>
<main class="content padding has-header">
<h1>I'm an H1 Element: gjpqy</h1>
<h2>I'm an H2 Element: gjpqy</h2>
<h3>I'm an H3 Element: gjpqy</h3>
<h4>I'm an H4 Element: gjpqy</h4>
<h5>I'm an H5 Element: gjpqy</h5>
<h6>I'm an H6 Element: gjpqy</h6>
<p>I'm a paragraph Element!</p>
<p>As am I'm a paragraph Element too.</p>
</main>
</body>
</html>