-
Notifications
You must be signed in to change notification settings - Fork 0
/
good-page.html
55 lines (48 loc) · 1.19 KB
/
good-page.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
<!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>This is a good page</title>
<style>
header {
background-color: #4267b2;
padding: 15px;
font-size: 24px;
color: #fff;
}
body {
margin: 0;
font-family: sans-serif, Arial, Helvetica, sans-serif;
}
.feed {
width: 400px;
}
.feed-title {
background-color: #4267b2;
padding: 5px;
text-align: center;
font-weight: 600;
color: #fff;
}
.post {
border: 1px solid grey;
border-radius: 3px;
padding: 10px;
}
</style>
</head>
<body>
<header>Phishbook</header>
<h1>Welcome to a really good, not malicious web site!</h1>
<h2>You are logged in.</h2>
<div class="feed">
<div class="feed-title">News Feed</div>
<div class="post">
<strong>Your totally tech-savvy aunt posted:</strong><br> Wow! I can't believe I can see who stalks my profile!<br>
<a href="bad-offsite-page.html" target="_blank">Click me to see who stalks yours!</a>
</div>
</div>
</body>
</html>