-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (73 loc) · 3.25 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
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KKay's Portfolio</title>
<link rel="stylesheet" href="resources/style.css">
<script src="https://kit.fontawesome.com/d5e34b69c5.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1 id="logo">KKay</h1>
<ul id="navbar">
<li class="navigation-item"><a href="#about-me">About Me</a></li>
<li class="navigation-item"><a href="#projects">Projects</a></li>
<li class="navigation-item"><a href="#skills">Skills</a></li>
<li class="navigation-item"><a href="resources/contact.html">Contact</a></li>
</ul>
</header>
<main>
<section id="about-me">
<div class="about-me-container">
<div class="about-me-text-container">
<h2>About Me</h2>
<p>Hi I'm KKay! I'm fairly new to programming, but welcome to my portfolio!! Right now, it's been <span id="time-container">0</span> seconds! Stay tuned to see how it all turns out! </p>
<p>I live in the UK and just completed my Bachelor's Degree in Mathematics, but am looking to broaden my skills in order to pursue a career in software development.</p>
<p>I'm also a singer! In my free time I like to record my own song covers. Perhaps one day I'll make another portfolio for my singing projects!!</p>
</div>
<img src="resources/kkay_avatar.jpg" alt="An avatar of KKay" class="avatar">
</div>
</section>
<section id="projects">
<h2>Projects</h2>
<details class="project">
<summary class="project-title">
<h3>First project</h3>
</summary>
<img src="https://i.pinimg.com/originals/71/3a/32/713a3272124cc57ba9e9fb7f59e9ab3b.gif" alt="loading gif" class="project-image">
<p class="project-description">Coming soon :D</p>
</details>
</section>
<section id="skills">
<h2>Skills</h2>
<div id="skills-container">
<i class="fab fa-html5 icon"></i>
<i class="fab fa-css3-alt icon"></i>
<i class="fab fa-js icon"></i>
<i class="fab fa-git icon"></i>
<i class="fab fa-chrome icon"></i>
<i class="fas fa-terminal icon"></i>
<i class="fab fa-node icon"></i>
<i class="fab fa-github icon"></i>
</div>
</section>
</main>
<footer>
Made with <span class="heart">♥</span> in London
</footer>
<script>
const timeContainer = document.getElementById("time-container");
const START_DAY = "2024-09-17";
const START_DAY_DATE = new Date(START_DAY);
const intlNumberFormatter = new Intl.NumberFormat("en-UK");
setInterval(() => {
const now = new Date();
const difference = Math.floor(
(now.getTime() - START_DAY_DATE.getTime()) / 1000
);
timeContainer.innerText = intlNumberFormatter.format(difference);
}, 1000);
</script>
</body>
</html>