-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfocus.html
59 lines (53 loc) · 1.48 KB
/
focus.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About My App</title>
<style>
body {
font-family: "Arial", sans-serif;
background-color: #282828; /* Gruvbox theme background */
color: #ebdbb2; /* Gruvbox theme text color */
margin: 0;
padding: 0;
}
header {
background-color: #3c3836; /* Gruvbox theme header color */
padding: 1em;
text-align: center;
}
nav {
background-color: #504945; /* Gruvbox theme navbar color */
padding: 0.5em;
text-align: center;
}
nav a {
text-decoration: none;
color: #ebdbb2; /* Gruvbox theme navbar text color */
margin: 0 1em;
}
main {
padding: 1em;
}
</style>
</head>
<body>
<header>
<h1>About My App</h1>
<p>Welcome to my app! 🚀</p>
</header>
<nav>
<a href="https://www.instagram.com/your_insta" target="_blank"
>Instagram</a
>
<a href="https://twitter.com/your_twitter" target="_blank">Twitter</a>
<a href="https://github.com/your_repo" target="_blank">GitHub</a>
</nav>
<main>
<p>Hi, I'm [Your Name], the creator of this app. 👋</p>
<p>This app was crafted with passion and purpose. 🌟</p>
<p>Feel free to explore and connect with me on social media!</p>
</main>
</body>
</html>