forked from fac-17/fac17-projects-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A gallery of web development projects built using HTML, CSS, vanilla JavaScript, NodeJS, PostgreSQL, Express and React by the 18th cohort of Founders and Coders students: FAC18">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="assets/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Major+Mono+Display|Delius|Sulphur+Point&display=swap" rel="stylesheet">
<title>FAC18 Projects Gallery</title>
</head>
<body>
<a href="https://www.foundersandcoders.com" target="_blank"><img class="fac-logo" src="assets/fac-logo-circ.png"></a>
<header class="app-header">
<h1><span class="cohort-name">FAC18</span> Projects Gallery</h1>
</header>
<p></p>
<main id="app">
</main>
<script src="js/data.js"></script>
<script src="js/logic.js"></script>
<script src="js/dom.js"></script>
<script src="js/app.js"></script>
</body>
</html>