-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathindex.html
107 lines (105 loc) · 3.27 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FrontEnd Database</title>
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./animation.css" />
<meta
name="keywords"
content="projects, idea , database ,Frontend, archive "
/>
<meta name="theme-color" content="#5f5eaa" />
<link rel="icon" href="./icon.png" />
<link rel="shortcut icon" href="./icon.png" />
<link rel="apple-touch-icon" href="./icon.png" />
</head>
<body>
<div class="body">
<!-- lines -->
<div class="lines">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<main>
<!-- navbar -->
<div class="navbar">
<a href="/" class="logo">Frontend Database</a>
<div class="links">
<a href="/">HOME</a>
<a href="contributors.html">CONTRIBUTORS</a>
<a href="contact.html">CONTACT</a>
</div>
<div class="theme">
<iconify-icon
class="theme-icon"
icon="system-uicons:sun"
onclick="handleChange('light')"
id="sun"
></iconify-icon>
<iconify-icon
class="theme-icon"
icon="system-uicons:moon"
onclick="handleChange('dark')"
id="moon"
></iconify-icon>
</div>
</div>
<!-- hero section -->
<div class="hero">
<div class="hero-data">
<h1>FrontEnd Database</h1>
<h2>A website for web projects</h2>
</div>
<div class="hero-logo">
<a
href="https://github.com/dev-AshishRanjan/Hacktoberfest-Frontend"
target="_blank"
><lord-icon
src="https://cdn.lordicon.com/kqvibaec.json"
trigger="morph"
delay="0"
stroke="bold"
style="width: 250px; height: 250px"
class="lordIcon"
>
</lord-icon
></a>
</div>
</div>
<!-- project section -->
<div class="projects">
<div class="smoke"></div>
<h1>Projects</h1>
<div class="searcheSection">
<form action="/">
<input
type="text"
placeholder="Search Projects..."
name="search"
required
class="search"
/>
</form>
<p class="SearchResultMetaData"></p>
</div>
</div>
<div class="footer">
<p>Open Source Project @2023</p>
<p>Developed by Kumar Ashish Ranjan and Open Source Community</p>
</div>
</main>
</div>
</body>
<script src="./app.js"></script>
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js"></script>
<script src="https://cdn.lordicon.com/lordicon.js"></script>
</html>