forked from 0-Tikaro/minimum-viable-startpage
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
27 lines (24 loc) · 824 Bytes
/
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
<!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">
<!--Title of the page-->
<title>New Tab</title>
<!--Startpage icon - material house icon-->
<link rel="shortcut icon" type="image/png" href="assets/favicon.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway:200,400">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="logo">
<h1 id="welcome-string"></h1>
<h2>Welcome to work</h2>
</div>
<div id="content">
<!--Filled dynamically by script.js. Edit `MASTER_MAP` inside the script to change page's contents-->
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>