-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</title>
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/screenItems.css">
<link rel="stylesheet" href="./css/appTemplates.css">
<link rel="stylesheet" href="./css/bottomMenu.css">
<link rel="stylesheet" href="./css/appSpecific/cv.css">
<link rel="stylesheet" href="./css/appSpecific/Projects.css">
<script src="./js/app.js" type="module"></script>
</head>
<body>
<div id="app-container">
<div class="column">
<!-- App icons will be appended here -->
</div>
<div id="start-full">
<div id="start-top" class="full-width"></div>
<div class="row">
<div id="left-side-menu"></div>
<div id="right-side-menu"></div>
</div>
<div id="start-bottom" class="full-width"></div>
</div>
<div id="btm-navbar">
<button id="start-btn">Start</button>
<div id="middle-stuff"></div>
<div id="end-menu">
<div id="clock"></div>
</div>
</div>
</div>
</body>
</html>