-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdecentra.html
More file actions
43 lines (41 loc) · 1.39 KB
/
Copy pathdecentra.html
File metadata and controls
43 lines (41 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DecentraVault - Welcome</title>
<!-- Link to the CSS file (to be provided later) -->
<link rel="stylesheet" href="opening.css">
</head>
<body>
<div class="opening-container">
<!-- Header with the project name -->
<header class="opening-header">
<h1>DecentraVault</h1>
</header>
<!-- Hero Section with Welcome Text and Insights -->
<div class="hero-section">
<div class="hero-text">
<h2>Welcome to DecentraVault</h2>
<p>
Experience the future of file storage. Secure, decentralized, and powered by blockchain technology,
DecentraVault ensures your files are safe and accessible anytime, anywhere.
</p>
<a href="login.html" class="btn-get-started">Get Started</a>
</div>
<aside class="hero-insights">
<h3>Why Choose DecentraVault?</h3>
<ul>
<li>Decentralized & Secure Storage</li>
<li>Access Your Files from Anywhere</li>
<li>Robust Blockchain Integration</li>
<li>User-Friendly Interface</li>
<li>Future-Ready Technology</li>
</ul>
</aside>
</div>
</div>
<!-- Link to your unified JS file -->
<script src="main.js"></script>
</body>
</html>