-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<title>WitnessDAO</title>
<style>
/* Your provided CSS starts here */
body {
background-color: #001f33; /* Dark blue background */
color: #b3d9ff; /* Light blue text color */
font-family: 'Courier New', monospace;
text-align: center;
padding: 50px;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
}
p {
font-size: 18px;
margin: 10px 0;
}
.container {
border: 1px solid #b3d9ff;
padding: 20px;
margin-top: 40px;
}
/* Your provided CSS ends here */
</style>
</head>
<body>
<h1>WitnessDAO</h1>
<p>WitnessDAO is a collective of top zk researchers & hackers who help audit impactful zk projects, <br>
send your repo to [email protected]</p>
<!-- <div class="container">
<h2>About Us</h2>
<p>WitnessDAO is a community-driven platform...</p>
</div>
<div class="container">
<h2>Contact Us</h2>
<p>Email: [email protected]</p>
<p>Twitter: @WitnessDAO</p>
</div> -->
</body>
</html>