-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
30 lines (27 loc) · 1.36 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
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>P2P Hack Club Hacktoberfest</title>
<link rel="icon" type="image/png" href="pumpkin.png">
<link rel="stylesheet" href="style.css">
</head>
<script>
function button(){
alert("Wow You can press a button");
let userInput = prompt("Enter a spooky thing");
alert("You like " + userInput);
alert("I guess thats it then");
alert("wait, what is that");
alert("BOOOOOO!!!!!!!!!!");
}
</script>
<body>
<p class="alert"><b>ALERT:</b> Pardon our dust! This website going through a major overhaul over the next few weeks! We are going to update the design and functionality of the site to make it more useful and accessible. <a href="mailto:[email protected]">If something is broken, please tell us!</a></p>
<h1><span>Hacktoberfest + First PRs!</span></h1>
<p>This website is dedicated to P2P hack club members to create their first pull requests and to participate in hacktoberfest 2022. Since the member really want free T-Shirts, they will hopefuly commit a lot of pull request to make this website awesome </p>
<button class = "start" onClick= "button()" >Click me for cool things to happen </button>
</body>
</html>