-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (19 loc) · 828 Bytes
/
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
<!-- https://www.geeksforgeeks.org/how-to-build-simple-terminal-like-website-using-jquery/ -->
<!DOCTYPE html>
<html lang="en">
<head>
<!--content type : HTML -->
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!-- Making viewport responsive -->
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<!-- Loading jQuery, jQuery.terminal,
and style sheet -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://unpkg.com/jquery.terminal/js/jquery.terminal.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/jquery.terminal/css/jquery.terminal.min.css" />
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<script src="app.js"></script>
</body>
</html>