forked from bostonopen/people
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 843 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
<!DOCTYPE html>
<html>
<head>
<title>People</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/styles.css" />
<script src="js/script.js"></script>
</head>
<body>
<h2 style="text-align: center;">People</h2>
<template id="person-template">
<div class="person-card">
<div class="person-image">
<a href="" class="avatar-href"><img src="" class="imagesrc"/></a>
</div>
<div class="container">
<div class="github">
<a href="" class="github-href">
<img src="images/github.svg" width="20" /><span class="github-username"></span>
</a>
</div>
</div>
</div>
</template>
<div id="people"></div>
</body>
</html>