-
Notifications
You must be signed in to change notification settings - Fork 0
/
Experiments.html
61 lines (58 loc) · 1.77 KB
/
Experiments.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="experiment styles.css" />
<!-- Import the Noto Sans font-->
<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=Noto+Sans:ital,wdth,wght@0,62.5..100,100..900;1,62.5..100,100..900&display=swap"
rel="stylesheet">
<!-- Noto Sans font importing end -->
<title>
Experiments Page
</title>
<link rel="icon" href="/images/Fluent Experiment Icon.png" type="image/x-icon">
</head>
<body class="noto">
<nav>
<ul class="nav">
<div class="logo">
<h1>Experiments Page</h1>
</div>
<div class="navtabs">
<li class="navtab">
<a href="index.html">Home</a>
</li>
<li class="navtab">
<a href="Experiments.html">Experiments and Tests</a>
</li>
<li class="navtab">
<a href="lab.html">Test Lab</a>
</li>
<li class="navtab">
<a href="#">About</a>
</li>
</div>
</ul>
</nav>
<p></p>
<h2 class="noto experiment-header">Experiments and Tests</h2>
<p class="description">This page is dedicated to my various experiments which are things that (may) have been already implemented in other projects and real world sites. But, I go and test them in this page.</p>
<h3 class="experiments">This is my list of experiments and tests:
<ol>
<li>Code Block customisation:
<code class="code">Code Block</code>
</li>
<li> Progress Bars (But not real ones!):
<div id="container">
<div class="bar p-bar">46%</div>
</div>
</li>
<li>Navbar at the top ^</li>
</ol>
</h3>
</body>
</html>