forked from TusharKesarwani/Front-End-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (103 loc) · 4.18 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
<!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">
<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 onload="myfunction()">
<div id="load"></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>
var preloader = document.getElementById('load');
function myfunction() {
preloader.style.display = 'none';
}
</script>
</body>
</html>