-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 964 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 964 Bytes
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Awesome Startup Employee Directory</title>
<link href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans:wght@400;700&display=swap" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet" type="text/css">
</head>
<body class="wrapper">
<header class="header">
<h1>
<span>Awesome</span>
<span>Startup</span>
<span>Employee</span>
<span>Directory</span>
</h1>
</header>
<main class="grid-container"></main>
<div class="overlay hidden">
<div class="modal">
<button class="modal__close">X</button>
<div class="modal__content">
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>