-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.26 KB
/
Copy pathindex.html
File metadata and controls
49 lines (49 loc) · 1.26 KB
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>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Ranchers&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon"
type="image/png"
href="Csr.png">
<title>Caesar</title>
<style>
@font-face { font-family: Big; src: url('DoughnutMonsterG-o2wx.ttf'); }
p{
font-family: Big;
font-size: 72px;
}
#result-container{
word-break: break-all;
text-align: center;
}
#input{
font-family: 'Ranchers', cursive;
height: 80px;
font-size: 50px;
text-align: center;
border-radius: 8px;
border-width: 2px;
}
#input:focus{
border-radius: 8px;
outline: none;
}
#input-container{
margin-top: 17%;
width: 100%;
text-align: center;;
}
</style>
</head>
<body>
<div id = 'input-container'>
<input type="text" id="input">
</div>
<div id = 'result-container'>
<p id = 'result'></p>
</div>
<script src="caesar.js"></script>
</body>
</html>