-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (33 loc) · 1.35 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>MultiFunc Editor</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Multi Function Editor</h1>
<div class = "row">
<div class="col">
<a href="./HuffmanZip/index.html"><button type="button" class="btn btn-warning">HuffmanZip</button></a>
</div>
<div class="offset-50 col">
<a href="./textMaster.html"><button type="button" class="btn btn-dark">TextMaster</button></a>
</div>
</div>
<div class = "row">
<div class="col">
<a href="./ImageCraft/index.html"><button type="button" class="btn btn-primary">ImageCraft</button></a>
</div>
<div class="offset-50 col">
<a href="./Snake Game/index.html"><button type="button" class="btn btn-success">Snake Game</button></a>
</div>
</div>
</div>
</body>
</html>