-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (23 loc) · 1.08 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
<html>
<head>
<title>Ben Martin Burke | Examples</title>
<link rel="stylesheet" type="text/css" href="./style.css" />
</head>
<body class="centre-col">
<div id="project-box-list" class="project-box-list centre-col">
<a class="project-box" href="secret_santa/">
<div class="bg-div" style="background: url('assets/cards_bg/hangles.png')"></div>
<div class="card-title">SECRET SANTA</div>
</a>
<a class="project-box" href="hand_angles_extraction_tool/">
<div class="bg-div" style="background: url('assets/cards_bg/hangles.png')"></div>
<div class="card-title">HAND ANGLES EXTRACTION TOOL</div>
</a>
<a class="project-box" href="language_learning/">
<div class="bg-div" style="background: url('assets/cards_bg/translate.png')"></div>
<div class="card-title">SECOND LANGUAGE LEARNING APP</div>
</a>
</div>
<script type="module" src="./app.js" ></script>
</body>
</html>