-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Gemunu+Libre&display=swap" rel="stylesheet" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.1/css/all.css"
integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/style.css" />
<title>K-Space</title>
</head>
<body>
<header>
<nav id="navbar">
<div class="container">
<h1 class="logo"><a href="index.html">K-Space</a></h1>
<ul>
<li><a class="current" href="index.html">Home</a></li>
<li><a href="photography.html">Photography</a></li>
<li><a href="games.html">Games</a></li>
<li><a href="contact.html">Contact</a></li>
<li>
<a href="https://github.com/KevSeenan" target="_blank">
<i class="fab fa-github"></i>
</a>
</li>
</ul>
</div>
</nav>
<div id="showcase">
<div class="container">
<div class="showcase-content">
<h1><span class="text-primary">Welcome</span> to K-Space.</h1>
<div class="gif-obi">
<img src="./images/obi-wan_hello.gif" alt="obi-wan" />
</div>
<p>I am Kevin, and this is my own wee space on the web.</p>
</div>
</div>
</div>
</header>
<section id="home-info"></section>
<footer id="main-footer">
<p>K-Space © 2023, All Rights Reserved</p>
</footer>
<!-- <script src="main.js"></script> -->
</body>
</html>