-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
43 lines (37 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>John Smith</title>
<link rel="icon" href="src/icon.ico">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<script src="js/main.js"></script>
</head>
<body>
<div class="container">
<div id="sidebar">
<h1>John Smith</h1>
<img src="src/profile.jpg" alt="Profile Picture" id="profile">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
<div id="terminal">
<!--
<p id="intro">
Placeholder for text on top of command line.
</p>
-->
<div id="injected"></div>
<div id="userInput">
<input type="text" value="root@John Smith's Website:~$" id="prompt" size = "28" readonly="readonly">
<input type="text" id="txtBox" onkeypress="commandProcessor(event)" placeholder="Enter help for commands list" size = "40" autofocus>
</div>
</div>
</div>
<footer>
<p id="Copyright">
©Copyright 2018 CedArctic
</p>
</footer>
</body>
</html>