-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (70 loc) · 1.73 KB
/
Copy pathindex.html
File metadata and controls
71 lines (70 loc) · 1.73 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
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dark Theme UI</title>
<style>
body {
margin: 0;
font-family: 'Arial', sans-serif;
background-color: #121212;
color: #E0E0E0;
display: flex;
flex-direction: column;
}
nav {
background-color: #1E1E1E;
padding: 1em;
display: flex;
justify-content: center;
gap: 1.5em;
width: 100%;
}
nav a {
color: #BB86FC;
text-decoration: none;
font-size: 1.1em;
padding: 0.5em 1em;
transition: background-color 0.3s ease, color 0.3s ease;
}
nav a:hover {
background-color: #333;
color: #FFFFFF;
border-radius: 5px;
}
.content {
max-width: 100%;
margin: 2em auto;
padding: 1.5em;
background-color: #1E1E1E;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}
h1, h2, h3 {
color: #BB86FC;
}
p {
line-height: 1.6;
}
@media (max-width: 600px) {
nav {
flex-direction: column;
gap: 1em;
}
}
</style>
</head>
<body>
<div style="width: 100%;">
<nav>
<a href="home">Home</a>
<a href="products">Products</a>
<a href="contactus">Contact Us</a>
</nav>
</div>
<div class="content">
{{%CONTENT%}}
</div>
</body>
</html>