-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (45 loc) · 1.2 KB
/
index.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
<!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">
<meta name="description" content="">
<meta name="author" content="">
<title>React Devices</title>
<!-- Bootstrap Core CSS -->
<!-- Custom CSS -->
<!-- Custom Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.2/semantic.min.css"></link>
</head>
<body class="hidden">
<style>
body, html {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
font-family: 'Raleway', sans-serif;
}
.logo-img-container {
width: 100%;
text-align: center;
background-color: #FCF5EA;
color: #E1B251;
padding: 20px 0;
}
.logo-img {
max-width: 200px;
}
</style>
<div class="logo-img-container">
<h1>React Devices</h1>
<img src="../assets/logo.png" class="logo-img"/>
<p>A curated collection of devices as react components.</p>
</div>
<div id="app">
</div>
<script src="./dist/example.js"></script>
</body>
</html>