-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (48 loc) · 2 KB
/
index.html
File metadata and controls
53 lines (48 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="Tricky's Website" property="og:title" />
<meta content="The Website of Tricky" property="og:description" />
<meta content="http://www.tricky.ml" property="og:url" />
<meta content="./assets/logo.png" property="og:image" />
<meta content="#43B581" data-react-helmet="true" name="theme-color" />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tricky's Website</title>
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="favicon.png" type="image/x-icon">
</head>
<body>
<div class="container">
<div class="navbar">
<img src="./assets/logo.png" alt="" class="logo">
<nav>
<ul>
<li>
<a href="./index.html">Home</a>
<a href="./projects.html">Projects</a>
<a href="./about.html">About me</a>
<a href="./contact.html">Contact me</a>
</li>
</ul>
</nav>
</div>
<div class="content">
<a href="" class="btn">My Passions</a>
<h1>Hello! I am Tricky, a 16 year old <br>living somewhere in the milky way.</h1>
<p>I am a gamedev, programmer, ethical hacker and gamer.<br> I like learning new skills.</p>
</div>
<div class="socials">
<a href="https://discord.gg/qNbC84zZEx">Discord</a>
<a href="https://github.com/Tricky4747">Github</a>
<a href="https://tricky4747.itch.io">Itch.io</a>
<a href="https://www.youtube.com/channel/UC2uCR_VdEx73EaOleIJ-WZw">Youtube</a>
</div>
<div id="particles-js" class="particles">
<script type="text/javascript" src="particles.js "></script>
<script type="text/javascript" src="app.js "></script>
</div>
</div>
</body>
</html>