This repository has been archived by the owner on Dec 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmessage.html
executable file
·57 lines (57 loc) · 2.34 KB
/
message.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com/" crossorigin>
<link rel="preconnect" href="https://maxcdn.bootstrapcdn.com/" crossorigin>
<link rel="preload" href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700" as="font" crossorigin>
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" as="style" crossorigin>
<link rel="preload" href="./css/uikit-bootstrap.css" as="style">
<title>Message - UI-Kit Bootstrap</title>
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="./favicons/apple-touch-icon.png">
<link rel="manifest" href="./favicons/manifest.json">
<link rel="mask-icon" href="./favicons/safari-pinned-tab.svg" color="#146577">
<link rel="shortcut icon" href="./favicons/favicon.ico">
<meta name="msapplication-config" content="./favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- Bootstrap core CSS, inclues glyphicons -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome, for social icons -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Open Sans from Google fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700" rel="stylesheet">
<!-- Styles for this theme -->
<link href="./build/dist/css/uikit-bootstrap.css" rel="stylesheet">
</head>
<body>
<header class="navbar hero full-page">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="navbar-header">
<a href="index.html" class="brand navbar-left">
<h1 class="brand-heading CoT-ignore">
UI-Kit Bootstrap
</h1>
</a>
</div>
</div>
<div class="col-md-12">
<p class="tagline">
Ideally with a simple heading and a tagline here.
</p>
<p>
Some optional, slightly smaller text here.
</p>
<p>
<a class="cta-link" href="index.html">Call to action</a>
</p>
</div>
</div>
</div>
</header>
</body>
</html>