forked from queens-web-development-club/Hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (49 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QHacks x QWEB Hacktoberfest</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f3f3f3;
margin: 0;
padding: 0;
}
header {
background-color: #1a1a1a;
color: #ffffff;
text-align: center;
padding: 20px 0;
}
h1 {
font-size: 36px;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<header>
<h1>QHacks x QWEB Hacktoberfest</h1>
</header>
<div class="container" style="margin-top: 1%">
<p>Welcome to the QHacks x QWEB Hacktoberfest event.</p>
<p>Your contributions will appear below.</p>
<p> This is Siddharth and Shania's contribution.</p>
</div>
<div class="container">
<!-- add your content here -->
<h1> Matthew Sun: "I will not disturb the tourists, affirm with me!"</h1>
<h1>Josh</h1>
<hi>Simon</hi>
<h1>Dima</h1>
</div>
</body>
</html>