-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (77 loc) · 3.63 KB
/
Copy pathindex.html
File metadata and controls
102 lines (77 loc) · 3.63 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!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">
<title>HomePage</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="CSS/styleParent.css">
<link rel="stylesheet" href="CSS/styleConsole.css">
<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=Alfa+Slab+One&family=Open+Sans:wght@300&family=Press+Start+2P&family=Roboto&family=Sora:wght@500&family=VT323&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/4eebd97972.js" crossorigin="anonymous"></script>
<script src="js/javaScript.js"></script>
</head>
<body>
<header>
<nav>
<h1> <div id="output"> Tumi Jourdan</div> </h1>
<input type="checkbox" id ="check">
<label for="check" class="burgerButton"> <i class="fa-solid fa-bars"></i></label>
<ul>
<li>
<button class="navBtn u-link navBtnConsole" onclick="displayConsole()" >Console</button>
<a href="#" class="navBtn u-link">Home</a>
<a href="htmls/projects.html" class="navBtn u-link">Projects</a>
<a href="htmls/blog.html" class="navBtn u-link">Blog</a>
<a href="htmls/designJurnal.html"class="navBtn u-link">Design</a>
</li>
</ul>
</nav>
</header>
<div class="container">
<div class="flex">
<div class="card h-entry">
<h2 class="Projects p-category">Projects </h2>
<p class="p-summary">
These projects are collected over the past 2 years of study in university of the Witwaterstrand. These projects have been my passion for the past 2.5 years.
</p>
<a href="htmls/projects.html" class="btn u-btn" >Read More</a>
</div>
<div class="card h-entry">
<h2 class="p-category">Design </h2>
<p>The design process for the website can be found here.
</p>
<a href="htmls/designJurnal.html" class="btn u-btn">Read More</a>
</div>
<div class="card h-entry">
<h2 class="p-category">Blogs </h2>
<p class="p-summary">These blogs cover critical writings of mine based on various texts.
</p>
<a href="htmls/blog.html" class="btn u-btn">Read More</a>
</div>
</div>
</div>
<!-- Draggable DIV -->
<div id="mydiv" style="display: none;">
<!-- Include a header DIV with the same name as the draggable DIV, followed by "header" -->
<span onclick="this.parentElement.style.display='none'"class="w3-button w3-black w3-hover-red w3-large w3-display-topright">x</span>
<div id="mydivheader">Click here to move</div>
<!--console content-->
<div id="displayField">
<p id="consolContent">Type "help" for more commands</p>
</div>
<!--inputbox-->
<button id="button">Button</button>
<form id="inputField">
<input id = "myInput" type="text" name="fname" id="fname">
</form>
</div>
<!--console end-->
</body>
<script src="js/terminal.js"></script>
<script src="js/movePanel.js"></script>
</html>