-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
68 lines (53 loc) · 2.63 KB
/
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
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
<!-- This is the main page people will see when they go to our site -->
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" type="image/png" href="img/favicon.ico">
<title>Blackmail</title>
<meta charset="UTF_8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" type="text/css" href="stylesheets/styles.css">
<container>
<div class="header">
<!--This image should be bigger, then shrink with page. Leaving as is for now-->
<div style=" text-align: center" class="img-responsive"> <img src="img/blackmailLogo.png" alt="Blackmail"
style="text-align: center; margin: 25px 25px;">
<div class="header-right">
<a class="active" href="index.html">Home</a>
<a href="login.html">Login</a>
<a href="contact.html">Contact</a>
</div>
</div>
</div>
</container>
</head>
<body>
<main>
<div class="container" style="margin: 25px 25px;">
<p>
<h2 style="text-align: center;"> Have a beef with someone?</h2>
<div style=" text-align: center" class="img-responsive"> <img src="img/blackmailthem28px.png"
alt="Blackmail" style="text-align: center; margin: 25px 25px;">
<h2 style="text-align: center;">Found some embarrassing photos?</h2>
<div style=" text-align: center" class="img-responsive"> <img src="img/blackmailthem28px.png"
alt="Blackmail" style="text-align: center; margin: 25px 25px;">
<h1 style="text-align: center;">Don't just ruin someone's life for fun, do it for profit!</h1>
<div style=" text-align: center" class="img-responsive"> <img src="img/blackmailthem28px.png"
alt="Blackmail" style="text-align: center; margin: 25px 25px;">
</p>
</div>
<div class="flex-container">
<div class="flex-child magenta">
<h2>Post a Blackmail</h2>
<button type="submit" onclick="location.href = 'login.html'">Login</button>
</div>
<div class="flex-child green">
<h2>Remove a Blackmail</h2>
<button type="submit" onclick="location.href = 'login.html'">Login</button>
</div>
</div>
</main>
<script src="scripts/main.js" charset="utf-8"> </script>
</body>
</html>