59 lines
2.3 KiB
HTML
59 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="it">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>CryptoSeals - Home</title>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="index.js" defer></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<div id="stars-container">
|
|
<div id="stars"></div>
|
|
<div id="stars2"></div>
|
|
<div id="stars3"></div>
|
|
</div>
|
|
<nav class="navbar">
|
|
<a href="index.html" class="nav-brand">
|
|
<img src="seal1.png" height="80" alt="ðŸ¦">
|
|
CryptoSeals
|
|
</a>
|
|
<div class="menu-toggle" onclick="toggleMenu()">
|
|
<i class="fa-solid fa-bars"></i>
|
|
</div>
|
|
<ul class="nav-links" id="nav-links">
|
|
<li><a href="rsa.html"><i class="fa-solid fa-key"></i> RSA</a></li>
|
|
<li><a href="cesare.html"><i class="fa-solid fa-arrow-right-arrow-left"></i> Cesare</a></li>
|
|
<li><a href="team.html"><i class="fa-solid fa-users"></i> Il Team</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<div class="container"
|
|
style="display: flex; flex-direction: column; align-items: center; justify-content: center; height: 60vh;">
|
|
<h1>Welcome to CryptoSeals</h1>
|
|
<p class="descrizione">
|
|
Dive deep, Seal your data. <i class="fa-solid fa-water"></i><br><br>
|
|
Scegli uno strumento dal menu per iniziare a proteggere i tuoi messaggi!
|
|
</p>
|
|
</div>
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" style="margin-bottom: -5px;">
|
|
<path fill="#0b0f19" fill-opacity="1"
|
|
d="M0,160L48,170.7C96,181,192,203,288,208C384,213,480,203,576,176C672,149,768,107,864,117.3C960,128,1056,192,1152,213.3C1248,235,1344,213,1392,202.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z">
|
|
</path>
|
|
</svg>
|
|
|
|
<footer>
|
|
<div class="copyright">
|
|
<a href="/privacy-policy/">Privacy Policy</a> |
|
|
<a href="#"><i class="fa-brands fa-github"></i> GitHub</a> <br><br>
|
|
© <span id="year"></span> CryptoSeals Team
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |