-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 1.8 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
<!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>Simple Window Manager Using WinBox.js</title>
<link rel="shortcut icon" href="favicon.png" type="image/x-icon" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="src/style.css" />
</head>
<body>
<div class="main-container">
<!-- Navbar -->
<div class="navbar">
<img class="logo" src="logo.svg" alt="logo" />
<div class="menu-items">
<ul>
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Document</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
<!-- Main Content -->
<div class="content-wrap">
<div class="content">
<h2>
Blind Text Generator
</h2>
<p>
One morning, when Gregor Samsa woke from troubled dreams, he found
himself transformed in his bed into a horrible vermin. He lay on his armour-like back, and if he lifted his head a little
he could see his brown belly, slightly domed and divided by arches
into stiff sections.
</p>
<p>
The bedding was hardly able to cover it and seemed ready to slide
off any moment.
</p>
<button>View More</button>
</div>
</div>
</div>
<!-- Scripts -->
<script src="src/winbox.bundle.js"></script>
<script src="src/script.js"></script>
</body>
</html>