-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_website.html
More file actions
115 lines (110 loc) · 3.93 KB
/
test_website.html
File metadata and controls
115 lines (110 loc) · 3.93 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ZHTP Test Website</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
max-width: 800px;
margin: 50px auto;
padding: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.container {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 40px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
h1 {
text-align: center;
font-size: 2.5em;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.subtitle {
text-align: center;
font-size: 1.2em;
opacity: 0.9;
margin-bottom: 30px;
}
.info-box {
background: rgba(255, 255, 255, 0.2);
padding: 20px;
border-radius: 10px;
margin: 20px 0;
}
.feature {
margin: 15px 0;
padding-left: 25px;
position: relative;
}
.feature:before {
content: "✓";
position: absolute;
left: 0;
color: #4ade80;
font-weight: bold;
font-size: 1.2em;
}
.timestamp {
text-align: center;
font-size: 0.9em;
opacity: 0.7;
margin-top: 30px;
}
a {
color: #93c5fd;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>🌐 Welcome to ZHTP Web4!</h1>
<div class="subtitle">The Decentralized Internet is Here</div>
<div class="info-box">
<h2>🚀 About This Website</h2>
<p>This is a test website hosted on <strong>The Sovereign Network</strong> using the ZHTP (Zero-knowledge Hypertext Transfer Protocol) Web4 system.</p>
</div>
<div class="info-box">
<h2>✨ Web4 Features</h2>
<div class="feature">Stored on decentralized DHT (Distributed Hash Table)</div>
<div class="feature">Registered on blockchain with smart contracts</div>
<div class="feature">Post-quantum cryptographic security</div>
<div class="feature">Zero-knowledge privacy protection</div>
<div class="feature">No central servers - pure mesh networking</div>
<div class="feature">Incentivized hosting with ZHTP tokens</div>
</div>
<div class="info-box">
<h2>🔧 Technical Details</h2>
<p><strong>Protocol:</strong> ZHTP (zhtp://)</p>
<p><strong>Storage:</strong> DHT with erasure coding (4+2 shards)</p>
<p><strong>Blockchain:</strong> UTXO model with smart contracts</p>
<p><strong>Cryptography:</strong> CRYSTALS-Dilithium + Kyber</p>
<p><strong>Proof System:</strong> Plonky2 recursive SNARKs</p>
</div>
<div class="info-box">
<h2>📊 Network Status</h2>
<p>If you're reading this, it means:</p>
<ul style="list-style: none; padding-left: 0;">
<li>✅ Content successfully uploaded to DHT</li>
<li>✅ Domain registered on blockchain</li>
<li>✅ Smart contract deployed</li>
<li>✅ You're connected to the mesh network</li>
</ul>
</div>
<div class="timestamp">
<p>Generated: November 27, 2025</p>
<p>Part of The Sovereign Network - Building the future of the internet</p>
</div>
</div>
</body>
</html>