forked from jjv360/HF-Scripter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html.ejs
30 lines (27 loc) · 973 Bytes
/
index.html.ejs
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title><%= htmlWebpackPlugin.options.title %></title>
<style>
* {
font-family: inherit;
}
html, body {
font-family: Lato, 'Proxima Nova', Helvetica, Arial;
margin: 0px;
padding: 0px;
background-color: #0f212e;
background: linear-gradient(#2b2b2b, #0f212e);
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,600,700" rel="stylesheet">
</body>
</html>