-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheeblocks.html
More file actions
56 lines (56 loc) · 2.19 KB
/
eeblocks.html
File metadata and controls
56 lines (56 loc) · 2.19 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Capasha - Home</title>
<link rel="stylesheet" href="css/eeblocks.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.min.js" integrity="sha384-mQ93GR66B00ZXjt0YO5KlohRA5SY2XofN4zfuZxLkoj1gXtW8ANNCe9d5Y3eG5eD" crossorigin="anonymous"></script>
</head>
<body class="bg-secondary">
<div class="container-fluid p-2 bg-dark text-white text-center">
<h1>EE Blocks</h1>
</div>
<nav class="navbar navbar-expand-sm navbar-dark bg-dark bg-gradient text-white">
<div class="container-mt-5">
<!-- Links -->
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html"><b>Home</b></a>
</li>
<li class="nav-item">
<a class="nav-link" href="blocks.html">EEU Blocks</a>
</li>
</ul>
</div>
</nav>
<div class="container align-items-center">
<div class="row">
<div class="col-sm-4">
<h2>Normal Blocks</h2>
<table class="table table-striped table-fit table-dark text-white">
<thead>
<tr>
<th scope="col">Image</th>
<th scope="col">Hex</th>
<th scope="col">Name</th>
<th scope="col">ID</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"><div class="tileone"></div></th>
<td>#B4B4B4</td>
<td>basicWhite</td>
<td>1</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>