-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 976 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Share+Tech+Mono" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Darker+Grotesque&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Domine&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<title>Portfolio</title>
</head>
<body>
<template id="template">
<div class="card">
<a target="_blank" href="linkurl" data-link>
<img alt="altv" class="logos" src="imageurl" data-image>
<p class="names" data-name></p>
</a>
</div>
</template>
<div class="wrapper">
<h1 id="title">IT'S ME, ADAM</h1>
<div id="main" class="box"></div>
</div>
<script src="./js/app.js"></script>
</body>
</html>