-
Notifications
You must be signed in to change notification settings - Fork 0
/
Updatelog.html
82 lines (64 loc) · 3.48 KB
/
Updatelog.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
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Updatelog</title>
<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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="styles.css">
<link rel="javascript" href="script.js">
<script src="https://kit.fontawesome.com/01116b4018.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1>UpdateLog</h1>
<nav>
<a class="darkerText" href="index.html">Home</a>
<i class="fa-brands fa-github"></i>
<a class="darkerText" href="https://github.com/ZombiesmasherJT" target="_blank">Github</a>
<i class="fa-solid fa-file"></i>
<a class="darkerText" href="https://drive.google.com/file/d/1MQZHQbG5q1EtRf-aQ-eUYAzaZBqbEQLB/view?usp=sharing" target="_blank">CV</a>
<i class="fa-brands fa-linkedin"></i>
<a class="darkerText" href="https://www.linkedin.com/in/joshuatite/" target="_blank">Linkedin</a>
</nav>
</header>
<main>
<section class="update-entry">
<h2>UpdateLog page</h2>
<p class="darkerText">Date: 09-02-2024</p>
<p>Created an updatelog page with update sections to demonstate the additons and functionalities I will add to my site.</p>
</section>
<!-- Update Section -->
<section class="update-entry">
<h2>Fetch API Github stats </h2>
<p class="darkerText">Date: 10-02-2024</p>
<p>The first interactive javascript functionality i added was the use of fetch api for my github stats on the main page.</p>
<!-- Use <a> for links, <img> for images with alt attributes -->
</section>
<!-- Repeat for other updates -->
<section class="update-entry">
<h2>(Coming soon)</h2>
<p class="darkerText">Date: YYYY-MM-DD</p>
<p>Coming soon.</p>
</section>
<!-- Add as many sections as you have updates -->
<section class="update-entry">
<h2>Type.js annimations and img hover for projects</h2>
<p class="darkerText">Date: 2024-06-11</p>
<p>So for this section i have used a json file to fetch infomation about my projects and display them being typed when scolled down to on the first page</p>
</section>
<section class="update-entry">
<h2>portfolio website so far</h2>
<img src="\public\webiste july22.png" alt="website now" height="400px" width="750px">
<p class="darkerText">Date: 2024-07-22</p>
<p>this is an image of my website so far so i can see how far my progress has gone from in the future.</p>
</section>
</main>
</body>
</html>
<script src="script.js"></script>
</body>
</html>