-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnewtab.html
More file actions
34 lines (34 loc) · 770 Bytes
/
newtab.html
File metadata and controls
34 lines (34 loc) · 770 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
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=<device-width>, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>New Tab</title>
<script type="text/javascript" src="./tabnotes.js"></script>
</head>
<style>
body {
margin: 0px;
}
#notes {
box-sizing: border-box;
border: 0;
font-size: 18px;
line-height: 1.75rem;
margin: 0;
min-height: 100vh;
height: auto;
padding: 2rem 15%;
resize: none;
width: 100%;
}
#notes {
background: #343434;
color: #fff;
}
</style>
<body>
<textarea id="notes" placeholder="Start writing."></textarea>
</body>
</html>