forked from Vishal-raj-1/Awesome-JavaScript-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e12e402
commit 1d2d699
Showing
1 changed file
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<!-- Bootstrap CSS --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" | ||
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous"> | ||
|
||
<title>Awesome JavaScript Project</title> | ||
</head> | ||
|
||
<body> | ||
<div class="container my-3 text-center"> | ||
<h1>Welcome to Awesome JavaScript Project</h1> | ||
</div> | ||
<div class="container border py-4"> | ||
<div class="row row-cols-3"> | ||
<div class="card m-3" style="width: 18rem;"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Note App</h5> | ||
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the | ||
card's content.</p> | ||
<a href="./Note app/index.html" class="btn btn-primary">Visit</a> | ||
</div> | ||
</div> | ||
|
||
<div class="card m-3" style="width: 18rem;"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Calculator</h5> | ||
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the | ||
card's content.</p> | ||
<a href="./Calculator/index.html" class="btn btn-primary">Visit</a> | ||
</div> | ||
</div> | ||
|
||
<div class="card m-3" style="width: 18rem;"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Color Flipper</h5> | ||
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the | ||
card's content.</p> | ||
<a href="./Color Flipper/index.html" class="btn btn-primary">Visit</a> | ||
</div> | ||
</div> | ||
<div class="card m-3" style="width: 18rem;"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Counter</h5> | ||
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the | ||
card's content.</p> | ||
<a href="./Counter/index.html" class="btn btn-primary">Visit</a> | ||
</div> | ||
</div> | ||
|
||
<div class="card m-3" style="width: 18rem;"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Reviews</h5> | ||
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the | ||
card's content.</p> | ||
<a href="./Reviews/index.html" class="btn btn-primary">Visit</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" | ||
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" | ||
crossorigin="anonymous"></script> | ||
</body> | ||
|
||
</html> |