Skip to content

Commit

Permalink
basic structure of website
Browse files Browse the repository at this point in the history
  • Loading branch information
Vishal-raj-1 committed Jan 30, 2021
1 parent e12e402 commit 1d2d699
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions index.html
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>

0 comments on commit 1d2d699

Please sign in to comment.