-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (65 loc) · 2.61 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"/>
<meta name="theme-color" content="#141520"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="styles/index.css">
<title>Albert Bregonia</title>
</head>
<body>
<header>
<div id="brand">
<svg id="logo" class="icon" viewBox="0 0 512 512">
<use href="media/icons.svg#logo-path"></use>
</svg>
<h1 id="name">ALBERT BREGONIA</h1>
</div>
<div id="clock">12:34:56 AM EST</div>
</header>
<main>
<div id="terminal"></div>
</main>
<footer>
<ul id="contact">
<li> <!-- icon from: https://www.coolfreecv.com/resume-icon-free -->
<a href="mailto:albertbregonia@gmail.com" target="_blank" title="Email">
<svg class="icon" viewBox="0 0 64 64">
<use href="media/icons.svg#email-path"></use>
</svg>
</a>
</li>
<li> <!-- icon from: https://github.com/logos -->
<a href="https://github.com/albertbregonia" target="_blank" title="GitHub">
<svg class="icon" viewBox="0 0 120 120">
<use href="media/icons.svg#github-path"></use>
</svg>
</a>
</li>
<li> <!-- custom made icon -->
<a href="https://albertbregonia.us.to" target="_blank" title="Info">
<svg class="icon" viewBox="0 0 512 512">
<use href="media/icons.svg#info-path"></use>
</svg>
</a>
</li>
<li> <!-- icon from: https://www.coolfreecv.com/resume-icon-free -->
<a href="https://linkedin.com/in/albertbregonia" target="_blank" title="LinkedIn">
<svg class="icon" viewBox="0 0 64 64">
<use href="media/icons.svg#linkedin-path"></use>
</svg>
</a>
</li>
<li> <!-- icon from: https://www.iconsdb.com/white-icons/musical-note-icon.html -->
<a href="https://soundcloud.com/kaninvt" target="_blank" title="SoundCloud">
<svg class="icon" viewBox="0 0 512 512">
<use href="media/icons.svg#soundcloud-path"></use>
</svg>
</a>
</li>
</ul>
</footer>
<script src="scripts/index.js"></script>
</body>
</html>