-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (52 loc) · 1.52 KB
/
index.html
File metadata and controls
57 lines (52 loc) · 1.52 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>CodersMod</title>
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Inter&display=swap"
rel="stylesheet"
/>
</head>
<body>
<nav>
<a href="/"><h3>CodersMod</h3></a>
<a href="/create.html"><span class="link-btn">Create</span></a>
<a href="https://github.com/TheRandomDevBro/CodersMod/issues"><span class="link-btn">Suggest Project</span></a>
<a href="https://github.com/TheRandomDevBro/CodersMod"><span class="link-btn">GitHub</span></a>
</nav>
<header>
<h1>CodersMod</h1>
</header>
<main>
<p>Welcome to CodersMod!</p>
<div class="projects container grid">
<div class="grid-title">
Projects
</div>
<div class="grid-content">
<div class="project">
<h3>Project 1</h3>
<p>Description</p>
</div>
<div class="project">
<h3>Project 2</h3>
<p>Description</p>
</div>
<div class="project">
<h3>Project 3</h3>
<p>Description</p>
</div>
</div>
</div>
</main>
<footer>
<p>© 2026 CodersMod</p>
</footer>
<script src="script.js"></script>
</body>
</html>