-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathindex.html
39 lines (39 loc) · 933 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
28
29
30
31
32
33
34
35
36
37
38
39
<!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>Data Structures and Modern Operators</title>
<style>
body {
height: 100vh;
display: flex;
align-items: center;
background: linear-gradient(to top left, #28b487, #7dd56f);
}
h1 {
font-family: sans-serif;
font-size: 50px;
line-height: 1.3;
width: 100%;
padding: 30px;
text-align: center;
color: white;
}
button {
width: 50px;
height: 20px;
margin: 10px;
}
textarea {
width: 300px;
height: 100px;
}
</style>
</head>
<body>
<h1>Data Structures and Modern Operators</h1>
<script src="script.js"></script>
</body>
</html>