-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (47 loc) · 2.24 KB
/
index.html
File metadata and controls
56 lines (47 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>JavaScript | Project Mela</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="/Needs/js.png" type="image/svg+xml">
</head>
<body>
<header class="container header">
<div class="navbar">
<a href="#"><span class="nav-li">Home</span></a>
<a href="#project"><span class="nav-li">Project</span></a>
<a href="https://www.linkedin.com/in/aman-kumar21/" target="_blank" rel="noopener noreferrer"><span class="nav-li">Connect</span></a>
</div>
</header>
<section class="container">
<div class="about-div">
<!-- <h1 class="about-h1">ProjectMela is a platform that showcases some of the best and most useful developer projects in one place. Whether you're here to explore projects for inspiration, practice, or showcase your own work — ProjectMela makes it easy.
Our team first filters and verifies submitted projects to ensure quality, and only then features them here. Everything is organized and easily accessible — like a grand coding fair.Have a great project? Submit it and be a part of the Mela!</h1> -->
<h1 class="about-h1">Every project submitted goes through a verification and quality check by our team to ensure it meets our standards — so you get access to only the most valuable and well-built projects.</h1>
<div class="about-btn">
<a href="#project"><button class="btn1">Explore Project</button></a>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" rel="noopener noreferrer">
<button class="btn2">Learn JavaScript</button>
</a>
</div>
</div>
<div>
<!-- <h1 class="project-h1">Project Collections</h1> -->
<h1 class="project-h1">Projects</h1>
</div>
</section>
<section class="container" id="project">
<!-- inject the div project -->
</section>
<section class="container">
<div class="madeby">
<h1 class="made-h1">Made with ❤️ by
<a href="https://www.codeupto.com/">Aman Yadav</a>
</h1>
</div>
</section>
<script src="script.js"></script>
</body>
</html>