forked from prof3ssorSt3v3/assign2-f20-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 988 Bytes
/
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
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Assign 2</title>
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@300;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<header>
<h1>People We Have Hired</h1>
</header>
<main>
<section class="cards">
<div class="card">
<div class="avatar">
<img
src="https://randomuser.me/api/portraits/med/men/57.jpg"
alt="person name image"
/>
</div>
<h3 class="name">Person Name</h3>
<p class="email">[email protected]</p>
<p class="cell">613-727-4723</p>
</div>
</section>
</main>
<pre></pre>
<script src="js/data.js"></script>
<script src="js/main.js"></script>
</body>
</html>