-
Notifications
You must be signed in to change notification settings - Fork 0
/
userspage.html
75 lines (62 loc) · 1.47 KB
/
userspage.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<title> User's page </title>
<style>
body{
background-color: wheat;
}
H1 {
text-align: center;
margin-top: 190px;
font: 50px Georgia;
color: #E8880C;
line-height: -5%;
background-color: whitesmoke;
}
#frame {
width:auto;
height:100px;
background-color:lightgrey;
margin:50px;
margin-left: 100px;
margin-right: 100px;
border: 1px solid grey;
}
.button {
background-color: #E8880C;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.homebutton{
float: right;
}
a.button:hover{
background: yellow;
}
</style>
</head>
<body>
<H1>NEWSNESS </H1>
<div id="frame">
</div>
<br><br>
<center>
<a href="securedrop.html" class="button">Secure Drop</a>
<a href="tails.html" class="button">Tails</a>
<a href="tor.html" class="button">Tor</a>
<br><br><br><br><br><br>
<a href="titlepage.html" class="button">Home</a>
</center>
</body>
</html>