-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 988 Bytes
/
index.html
File metadata and controls
49 lines (48 loc) · 988 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bleb</title>
<style>
* {box-sizing: border-box}
body, html {
height: 100%;
margin: 0;
font-family: Arial;
}
textarea {
width: 96vw;
height: 80px;
padding: 10px 10px;
margin-right: 2vw;
margin-left: 2vw;
margin-top: 2vw;
margin-bottom: .5vw;
display: inline-block;
border-radius: 4px;
box-sizing: border-box;
resize: none;
font: Arial;
}
button {
width: 96vw;
padding: 10px 10px;
margin-left: 2vw;
margin-right: 2vw;
display: inline-block;
border: none;
border-radius: 4px;
background-color: #4CAF50;
color: white;
text-align: center;
text-decoration: none;
font-size: 16px;
cursor: pointer;
}
</style>
</head>
<body>
<textarea id="text" placeholder="What's your name?"></textarea>
<button onclick = "run()" id="submit">Submit</button>
<script src = "script.js"></script>
</body>
</html>