-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (62 loc) · 2.86 KB
/
index.html
File metadata and controls
64 lines (62 loc) · 2.86 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html lang="en">
<head>
<meta name="robots" content="noindex, nofollow" />
<script src='./scripts/home.js'></script>
<link rel="stylesheet" href="./styles/home.css">
<link rel="apple-touch-icon" sizes="180x180" href="./images/apple-touch-icon.png">
<link rel="icon" href="./images/favicon-old.png">
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Home - Isaiah's Website</title>
</head>
<body>
<header class="headerContainer">
<div class="leftHeaderColumn">
<button id="MenuButton" class="menuButton" title="Open Menu">
<img id="Menu" class="menu" src="./icons/menu.svg"/>
</button>
<div id="MenuContent" class="menuContent">
<label id="EnableOutlinesLabel" class="enableOutlinesLabel" title="Toggle Border Outline of Divs">Enable Borders</label>
<label id="ToggleSwitch" class="toggleSwitch">
<input type="checkbox" onclick="enableOutlinesClick()">
<span class="slider round" title="Toggle Div Borders"></span>
</label>
</div>
</div>
<div class="centerHeaderColumn">
<div class="logoPressableArea" onclick="homeButtonClick()" title="Isaiah.digital : Home"></div>
<img class="logo" src="./images/Logo.png"/>
</div>
<div class="rightHeaderColumn">
<button id="AlertButton" class="alertButton" title="Notifications">
<img id="AlertBox" class="alertBox" src="./icons/bell.svg"/>
<label id="AlertCount" class="alertCount">1</label>
</button>
<img id="ProfilePicture" class="profilePicture" src="./images/favicon.png" onclick="profileButtonClick()" title="View Test Page"/>
</div>
</header>
<div class="bodyContentContainer">
<div class="leftBodyColumn">
</div>
<div class="centerBodyColumn">
<div id="WelcomeMessage" class="welcomeMessage">
<img id="CloseBox" class="closeWelcomeBox" src="./icons/close-filled.svg" title="Close Message"/>
<h1 id="WelcomeBox" class="welcomeBox">Welcome, Check Out My Projects!</h1>
</div>
</div>
<div class="rightBodyColumn">
<div id="ButtonsWrapper" class="linkButtonsWrapper">
<span class="linkButtonsWrapper linkToSiteSpan" onclick="openLinkToSite()" title="Isaiah.digital : Home">
Homepage
</span>
<span class="linkButtonsWrapper linkToGithubSpan" onclick="openLinkToGithub()" title="Github Projects">
Github Projects
</span>
</div>
</div>
</div>
</body>
</html>