-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
36 lines (31 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="assets/favicon.ico">
<title>Terminal Portfolio - Ahsan Khan</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="terminalContent">
<div class="container">
<div id="terminalHeader">
<div class="button buttonRed"></div>
<div class="button buttonGreen"></div>
<div class="button buttonYellow"></div>
<div id="headerName"></div>
<a href="https://github.com/ahsankhan26" target="_blank"><i id="githubIcon" class="button fa fa-github"></i></a>
</div>
<div id="terminalBody">
Welcome to TermFolio! A Porfolio Terminal<br>
Use "help" to view list of commands<br>
> <input type="text" autofocus />
</div>
</div>
</div>
<script type='text/javascript' src='js/data.js'></script>
<script src="js/script.js"></script>
</body>
</html>