blob: 565b80e25704f72d1efa73bbe64fe9268202f551 (
plain)
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
50
51
52
53
54
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="static/css/new.main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script>
function myFunction() {
var x = document.getElementById("topnavbar");
if (x.className === "navbar") {
x.className += " responsive";
} else {
x.className = "navbar";
}
}
</script>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>(beta)Hell Correspondence</title>
</head>
<body>
<div class="navbar" id="topnavbar">
<a href="/" class="logo" id="logo">
<img src="media/index.png" alt="Hell Girl anime version" width="80" height="80"></a>
<a href="javascript:void(0);" class="hamburger-icon" onclick="myFunction()">
<i class="fa fa-bars"></i></a>
<a href="/en">More</a>
</div>
<div class="body" id="body">
<div class="rightflex">
<br>
<h1>Enter someone's name to send them to <strong>hell</strong>.</h1></span>
<div class="form" method="POST">
<input type="text" id="name" name="name">
<button type="button" id="send">Send</button>
</div>
<div class="subtext">
<h3 id="subtext1">
<strong class="big">Notice:</strong>
When you <strong>curse</strong> someone, there will be two holes that you dig...
</h3>
<br>
<h3 id="subtext2">
One is for the cursed person and the other one is for <strong class="big">yourself.
</h3>
</div>
</div>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</div>
<div id="foot">
</div>
</body>
</html>
|