-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.html
More file actions
41 lines (40 loc) · 1.57 KB
/
project.html
File metadata and controls
41 lines (40 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<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>Dev Libs</title>
<meta name="description" content="Dev Libs! Mad libs for developers!" />
<link rel="icon" type="image/png" href="./favicon.png" />
<link rel="stylesheet" href="./css/index.css" />
<script src="https://kit.fontawesome.com/7c85345c69.js"></script>
</head>
<body>
<nav>
<div class="links">
<a href="index.html"><i class="tab-icon fas fa-home fa-1x "></i> index.html</a>
<a class="selected" href="project.html"><i class="tab-icon fas fa-users fa-1x "></i>project.html</a>
<a href="bugs.html"><i class="tab-icon fas fa-bug fa-1x "></i> bugs.html</a>
</div>
<a href="https://youthful-mccarthy-1f11ec.netlify.com/" class="login"><i class="fas fa-sign-in-alt"></i> Login</a>
</nav>
<main>
<section id="loading" class="animated fadeIn">
<i class="fas fa-3x fa-circle-notch fa-spin"></i>
</section>
<section class="project-section hide" id="team">
<h1 class="center">The Team</h1>
<div id="members" class="grid"></div>
</section>
<section class="project-section hide" id="tech">
<h1 class="center">Technologies</h1>
<div id="technologies" class="grid"></div>
</section>
</main>
<footer>
<span>Dev-Libs ©2019</span>
</footer>
<script type="module" src="./scripts/project.js"></script>
</body>
</html>