-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (66 loc) · 4.34 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
66
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link href='css/style.css' type='text/css' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src='https://code.jquery.com/jquery-3.1.0.min.js'></script>
<script src="js/main.js" type="text/javascript"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<title>Tiko's Website</title>
</head>
<body class="background">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">TikoMC</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./server manager/index.html">Server Manager</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Servers
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a href="./servers/vanilla/index.html" class="dropdown-item">Vanilla Server</a>
<a href="./servers/alt1/index.html" class="dropdown-item">Rentable Server 1</a>
<a href="./servers/alt2/index.html" class="dropdown-item">Rentable Server 2</a>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" id="navbarDropdownBots" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Bots
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownBots">
<a href="./bots/word-tracker/index.html" class="dropdown-item">Word-Tracker</a>
<a href="./bots/server-bot/index.html" class="dropdown-item">Server bot</a>
</div>
</li>
<li class="nav-item">
<a href="./resume/index.html" class="nav-link">Resume</a>
</li>
</ul>
</div>
</nav>
<div class="container-fluid title">
<h1>Welcome to my website</h1>
</div>
<div class="container main-body">
<p class="normal-text">Hello! I am Tiko Bauer and I enjoy programming and making things! I know a few programming languages and I will rank them in order of proficiency: Javascript, Lua, Html, Css, C++, Java, C#</p>
<p class="normal-text">I am working on a project right now involving full-stack web development. I am making a website that will allow people to easily host and manage a Minecraft Server.</p>
<p class="normal-text">You can read more about this project <a class="hyper-link" href="./server manager/index.html">here</a>.</p>
<p class="normal-text">If you would like to know more about the Rentable Servers you can learn more about the first one <a class="hyper-link" href="./servers/alt1/index.html">here</a> or the second one <a class="hyper-link" href="./servers/alt2/index.html">here</a>.</p>
</div>
</body>
</html>