-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (27 loc) · 983 Bytes
/
index.html
File metadata and controls
36 lines (27 loc) · 983 Bytes
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" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RepubblicaTech's Pages</title>
<link rel="icon" type="image/png" href="assets/icon.png">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="header">
<img src="assets/icon.png" id="icon" alt=""/>
<h1>Omar's Pages</h1>
<img onclick="switchTheme()" id="switcher" src="assets/moon-svgrepo-com.png"></img>
</div>
<div id="website">
<div id="section_links">
<span href="/home.html" class="section" target="content">Home</span>
<span href="/projects/" class="section" target="content">Projects</span>
<span href="/about/" class="section" target="content">About me</span>
</div>
<div id="content" name="content">
</div>
</div>
<script src="index.js"></script>
</body>
</html>