-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
50 lines (45 loc) · 2.02 KB
/
example.html
File metadata and controls
50 lines (45 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nebula Docs - Example Syntax</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=Agbalumo&family=Audiowide&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<header>
<nav class="navbar">
<a href="index.html">Home</a> -
<a id="current-page" href="example.html">Example</a>
</nav>
</header>
<h1 class="page-title">Example — Syntax</h1>
<div class="content-body">
<p class="page-title">This is 'page-title'</p>
<p class="section-divider">This is 'section-divider'</p>
<p class="content-text">This is 'content-text'</p>
<p class="text-center">This is 'text-center'</p>
<p class="navbar">This is 'navbar'</p>
<p class="main-content">This is 'main-content'</p>
<p class="content-body">This is 'content-body'</p>
<p class="text-info">This is 'text-info'</p>
<p class="text-warning">This is 'text-warning'</p>
<p class="text-danger">This is 'text-danger'</p>
<p class="text-success">This is 'text-success'</p>
<p class="video-container">This is 'video-container'</p>
<p class="text-404">This is 'text-404'</p>
<p class="img-404">This is 'img-404'</p>
<img class="an-image" src="nennieinszweidrei-cat-8081701_1920.jpg" alt="A cute cat">
</div>
<footer>
<p>{MY PRODUCT} Documentation - Made with <a href="https://nebuladocs.magicgamer.xyz/" target="_blank">Nebula
Docs </a> </p>
</footer>
</body>
</html>