forked from Vishal-raj-1/Awesome-JavaScript-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
133 lines (125 loc) · 5.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" />
<link href="https://fonts.googleapis.com/css?family=Merriweather:400,900,900i" rel="stylesheet" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/style.css" />
<!-- Favicon -->
<link rel="shortcut icon" type="image/jpg" href="./assets/Images/favicons/10.png">
<link rel="stylesheet" href="./script.js">
<title>Awesome JavaScript Project</title>
</head>
<body>
<!-- Navbar -->
<nav id="Navbar" class="navbar navbar-expand-lg navbar-dark bg-dark mb-3" >
<div class="container-fluid">
<a class="navbar-brand text-light" href="#">Awesome Javascript</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link text-light" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" aria-current="page" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" aria-current="page" href="#project">Projects</a>
</li>
</ul>
<div style="margin: 1%" class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox" />
<div class="slider round"></div>
</label>
</div>
<form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search" />
<button class="btn btn-outline-light" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<section>
<div class="container pt-5">
<div class="row homeSection">
<div class="col col-8">
<img src="assets/Images/home.svg" class="img-fluid homeImg" alt="" />
</div>
<div class="col col-4 my-auto home">
<h1>Hello Fellas!!</h1>
<p class="homePara">Welcome to Awesome Javascript Projects</p>
</div>
</div>
</div>
</section>
<section id="about" class="container about pb-5 pt-5">
<div class="row">
<div class="col col-5 about">
<div class="aboutSection overflow-auto my-5">
<h2 class="aboutHeader mx-auto">About Us</h2>
<p class="aboutPara">
This Platform is built by JavaScript Developers to make Learning
Javascript easy for the newbies . This website has so many
Beginner Friendly Projects which you should try your hands on. It
will help you learn each and every basic concept of Javascript and
you will keep a strong hold on Javascript
</p>
</div>
</div>
<div class="col col-7">
<img src="assets/Images/about.svg" class="aboutUsImg img-fluid" alt="" />
</div>
</div>
</section>
<section id="project">
<div class="container my-3 text-center">
<h1>Awesome Javascript Projects</h1>
</div>
<div class="container border py-4">
<div class="row row-cols-3" id="js-projects">
</div>
</div>
</section>
<div class="Scroll">
<button onclick="topFunction()" id="myBtn" title="Go to top">
<i class="fa fa-chevron-circle-up" aria-hidden="true" id="icon"></i>
</button>
</div>
<script src="assets/js/Scroll.js"></script>
<footer class="bg-dark text-center text-lg-start">
<!-- Copyright -->
<div class="text-center p-3 footer">
<a href="https://github.com/Vishal-raj-1/Awesome-JavaScript-Projects" target="_blank"><i style="color:white;"
class="fab fa-github fa-2x"></i></a>
<p class="">
©
<script type="text/javascript">
document.write(new Date().getFullYear());
</script>
Copyright |
<a href="https://vishal-raj-1.github.io/Awesome-JavaScript-Projects/"
style="color: white; text-decoration: none">AwesomeJavascript.com</a>
</p>
</div>
<!-- Copyright -->
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
<script src="script.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>