-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (41 loc) · 1.5 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
<!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>Cheatsheet</title>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./cheatsheet.css">
</head>
<body>
<div class="container">
<!-- navbar strats here -->
<nav class="navbar">
<a href="#"><img src="./copy.png" alt="Cheatsheet icon"></a>
<a href="#">Home</a>
<a href="./html.html">Html</a>
<a href="./css.html">CSS</a>
<a href="./js.html">Java Script</a>
<a href="#">Others</a>
<a href="https://www.google.com/" target="_blank" style="float: right;">Go for Help</a>
</nav>
<!-- navbar ends here -->
</div>
<div class="main">
<table class="table">
<thead>
<th>
<a href="./html.html"><img src="./icons8-html-5-512.png" alt=""></a>
</th>
<th>
<a href="./css.html"><img src="./icons8-css3-512.png" alt=""></a>
</th>
<th>
<a href="./js.html"><img src="./icons8-javascript-logo-512.png" alt=""></a>
</th>
</thead>
</table>
</div>
</body>
</html>