-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (53 loc) · 2.14 KB
/
index.html
File metadata and controls
63 lines (53 loc) · 2.14 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-154161866-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-154161866-3');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web:wght@600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/3e2904ca60.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="/media/global.css">
<link rel="stylesheet" href="style.css">
<script src="/media/global.js"></script>
<script src="script.js"></script>
<title>Home</title>
</head>
<body>
<div id="header">
</div>
<div id="main_content">
<div id="name">
<h1>Felix Perron</h1>
<div id="line"></div>
</div>
<div id="description">
<p>
I am a 17 year old student interested in anything related to technology.
I love building things both with my hands and through software. On this
website, you will find some of the projects I have worked on.
</p>
</div>
<div id="icon-div">
<a class="fab fa-github" href="https://github.com/Blobtoe" title="github.com/Blobtoe"></a>
<a class="fas fa-envelope" href="mailto:felixxperron@gmail.com", title="felixxperron@gmail.com"></a>
</div>
</div>
<div id="footer">
</div>
</body>
</html>
<script>
$(document).ready(function() {
$("#menu ul li a[name='home']").css("background-color", "#444444")
})
</script>