-
Notifications
You must be signed in to change notification settings - Fork 0
/
project-id.html
96 lines (91 loc) · 2.97 KB
/
project-id.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
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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>Individual Project</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="project-id-bg imgBg">
<h1>
PROJECT <br />
NAME
</h1>
</div>
<div class="imgBg">
<div>
<h2>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</h2>
<div class="project-imgs">
<a href="/project-id.html">
<img
class="project-id"
src="./assets/imgs/projectImg.png"
alt=""
/>
</a>
<a href="/project-id.html">
<img
class="project-id"
src="./assets/imgs/projectImg.png"
alt=""
/>
</a>
<a href="/project-id.html">
<img
class="project-id"
src="./assets/imgs/projectImg.png"
alt=""
/>
</a>
</div>
<p class="text--md mt mb">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
<a chref="/" class="btn btn--primary">Open Project</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>
</body>
</html>