-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 1.82 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>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Corben:bold" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="narrow-container">
<h3 id="customHeader">CanDense</h3>
<!-- Navbar -->
<div class="row">
<div class="col-12">
<nav class="navbar justify-content-center">
<ul class="list-inline">
<li class="list-inline-item">
<a href="live_read.html" class="navbar-link">Live Read</a>
</li>
<li class="list-inline-item">
<a href="file_read.html" class="navbar-link">File Read</a>
</li>
<li class="list-inline-item">
<a href="transmit.html" class="navbar-link">Transmit</a>
</li>
</ul>
</nav>
</div>
</div>
<div class="row">
<div class="col-12">
<hr id="navbar-rule">
</div>
</div>
<!-- <div id="centerAlign">
<form action="live_read.html" class="IndexBtn">
<input type="submit" value="Read live messages"/>
</form>
<form action="file_read.html" class="IndexBtn">
<input type="submit" value="Read from file">
</form>
<form action="transmit.html" class="IndexBtn">
<input type="submit" value="Transmit messages">
</form>
<form action="settings.html" class="IndexBtn">
<input type="submit" value="Settings">
</form>
</div> -->
</div>
</body>
<!-- <script src="./renderer.js"></script> -->
<!-- <script src="./filereader.js"></script> -->
</html>