-
Notifications
You must be signed in to change notification settings - Fork 584
/
index.html
149 lines (131 loc) · 5.13 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Home Page" />
<meta name="keywords" content="Front-End, Projects, Templates" />
<meta name="author" content="Tushar Kesarwani" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="WpdMF3NaKepMJ5EE4qv_3tK5eKD_sWnUYk02Lc5EtXQ" />
<title>Front-End Projects | Home Page</title>
<!--Main CSS-->
<link rel="stylesheet" href="style.css">
<!--fontawesome-->
<script src="https://kit.fontawesome.com/332a215f17.js" crossorigin="anonymous"></script>
<!--Animate.css--->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<!-- Favicon -->
<link rel="icon" href="img/favicon.ico" type="image/png" />
</head>
<body class="notLoaded">
<!-- Preloader Animation -->
<div id="load">
<h1 class="loading-text">Loading...</h1>
<div class="container">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
</div>
<!-- scrollbar button -->
<div id="progress">
<i id="progress-value" class="fas fa-arrow-up"></i>
</div>
<!-- Navigation Section -->
<nav>
<div>
<a href="index.html"><img src="img/LOGO.png" alt="logo"></a>
</div>
<div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="https://github.com/TusharKesarwani/Front-End-Projects" class="github-btn"><i class="fa-brands fa-github"></i> Goto GitHub Repository</a></li>
</ul>
</div>
</nav>
<!-- Body Section -->
<main>
<!-- Hero -->
<div class="left">
<div class="headings">
<h1>Front End<br>Projects</h1>
<p>A Repository where different types of Front - End Projects are present. If you have any front end project then you can contribute to this open source repository.</p>
</div>
<a href="https://github.com/TusharKesarwani/Front-End-Projects" class="github-btn-cta"><i class="fa-brands fa-github"></i> Contribute Now <i class="fa-solid fa-arrow-right"></i></a>
</div>
<div class="right">
<img src="https://cdn3d.iconscout.com/3d/premium/thumb/web-developer-4788760-3988051.png" alt="front-end coder">
</div>
</main>
<!-- Projects Section -->
<section class="project-section" id="projects">
<div class="project-header">
<div class="head">
<h1 class="bg-title">PROJECTS</h1>
<h1 class="title">Projects</h1>
</div>
<form id="searchForm">
<input id ="search" type="text" placeholder="Enter projects to search" />
<button type="submit"><i class="fa-solid fa-magnifying-glass"></i></button>
</form>
</div>
<div class="projects"></div>
</section>
<!-- Contributors list -->
<section class="contributors">
<div class="head">
<h1 class="bg-title">CONTRIBUTORS</h1>
<h1 class="title">Contributors</h1>
</div>
<ul class="list-section">
<li id="contributors-list"></li>
</ul>
</section>
<footer id="footer">
<div>
© Copyright
<a href="#" target="_blank">
<strong>Front-End Projects</strong>
</a>. All rights reserved.
</div>
<div>Designed with
<i class="fa-solid fa-heart"></i> by
<strong class="text-dark"><a href="https://linktr.ee/tushar_104/" target="_blank">Tushar</a></strong>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/d6de929348.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script type="module" src="script.js"></script>
<script>
// Code for preloader starts
document.addEventListener("DOMContentLoaded", function() {
setTimeout(fadeout, 2000);
// fadeout;
});
function fadeout() {
let loadElement = document.getElementById("load");
if (loadElement) {
setTimeout(function() {
loadElement.style.opacity = 0;
setTimeout(function() {
loadElement.style.display = "none";
let notLoadedElements = document.querySelectorAll(".notLoaded");
notLoadedElements.forEach(function(element) {
element.classList.remove("notLoaded");
});
}, 0);
}, 0);
}
}
// code for preloader ends
</script>
</body>
</html>