-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (77 loc) · 2.39 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./assets/style.css" />
<title>Shokunin Home</title>
</head>
<body>
<div class="container">
<nav role="navigation">
<a href="/">
<img
class="logo"
src="./assets/imgs/Logo.png"
alt="Shokunin logo home"
/>
</a>
<div class="nav__links">
<a href="/about.html">About</a>
<a href="/proposals.html">Proposals</a>
<a href="/projects.html">Projects</a>
</div>
</nav>
<div class="atf imgBg">
<h1>
Funding <br />
public <br />
goods of <br />
the future
</h1>
<button class="btn btn--primary">Documentation</button>
</div>
<div class="imgBg">
<h2>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</h2>
<a chref="/" class="btn btn--primary">About</a>
</div>
<div class="hiw imgBg">
<h1>
How it <br />
works
</h1>
<a href="/" class="btn btn--secondary">Submitting Proposals</a>
</div>
<div class="imgBg">
<h2>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</h2>
<a chref="/" class="btn btn--primary">Projects</a>
</div>
<footer>
<p class="text--small">Shokunin Network 2022 | All Rights Reserved</p>
<div class="footer__sm">
<a href="/">
<img src="./assets/imgs/discord.png" alt="Shokunin discord" />
</a>
<a href="/">
<img src="./assets/imgs/twitter.png" alt="Shokunin twitter" />
</a>
</div>
</footer>
</div>
<!-- Scripts -->
<script src="bundle.js"></script>
</body>
</html>