-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
52 lines (49 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<script src="./main.js" defer></script>
<link rel="shortcut icon" href="./assets/code.png" type="image/x-icon">
<title>FrontEnd Sninppets</title>
</head>
<body>
<nav>
<div class="nav_logo"><a href="./index.html"><img width="50px" src="./assets/code.png"></a></div>
<div class="nav_links">
<ul>
<a href="./docs.html">
<li>Docs 📄</li>
</a>
<a href="./contribute.html">
<li>Contribute 🚀</li>
</a>
</ul>
</div>
</nav>
<main>
<div class="hero-section">
<h1 class="mainheading" data-value="FRONTEND SNIPPETS">FRONTEND SNIPPETS</h1>
<p class="hero-description">
Welcome to Frontend Snippets, an open-source collection of styled HTML/CSS components!<br />
Explore a variety of cool buttons, cards, navbars, and more submitted by contributors like you.
</p>
<div class="hero-buttons">
<a href="https://github.com/Dev-Code-Community/frontend-snippets" target="_blank"
rel="noopener noreferrer">
<button class="github-button">Contribute on GitHub 🚀</button>
</a>
<a href="/docs.html">
<button class="explore-button">Explore Our Snippets 🌐</button>
</a>
</div>
</div>
</main>
<footer>
✨Powered by <a href="https://discord.gg/xqesRN5FfW" target="_blank">
<Devcode />
</a> community✨
</footer>
</body>
</html>