-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel1.html
38 lines (30 loc) · 1.13 KB
/
level1.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
<html>
<head>
<title>Q1</title>
<style type=text/css>
body{
background-color:lightblue;
text-align: center;
font-family: sans-serif;
}
p{
font-size: 20px;
margin-bottom: 40px;
}
</style>
</head>
<body>
<h1>Welcome to Capture the flag</h1>
<p>When something is not working you should find other ways to
achieve your goal
<br>
</p>
<img src="https://www.hackedu.com/hs-fs/hubfs/CTF.jpg?width=600&name=CTF.jpg">
<!-- CTF{AlwaysseeSourceCode}-->
<script>
window.addEventListener('contextmenu', function (e) {
e.preventDefault();
}, false);
</script>
</body>
</html>