-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.htm
72 lines (59 loc) · 2.88 KB
/
index.htm
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
<!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-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ=="
crossorigin="anonymous"></script>
<!-- FONT AWESOME CDN-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" />
<link rel="stylesheet" href="css/style.css">
<title>Propack</title>
</head>
<body>
<div id="navbar"></div>
<div class="cursor d-none d-sm-block"></div>
<section class="d-flex justify-content-md-center flex-wrap-reverse ">
<div class=" col-lg-6 p-4 text-center text-lg-start text-dark align-self-center">
<h1 class="display-3 fw-bold lh-1 mb-3">ProPack</h1>
<p class="lead">ProPack is the one-stop solution for everyone who wants basic JavaScript Project with
live demo and code.</p>
<a type="button" class="btn btn-secondary-custom text-light rounded-pill px-4"
href="/pages/project.html">Get
Started</a>
</div>
<div class="image p-sm-2 d-none d-lg-block justify-content-md-center">
<img src="images/thumb.png" class="img-fluid 3D-effect" alt="Hero Image" width="400" height="300"
data-tilt>
</div>
</section>
<div id="footer"></div>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous">
</script>
<script>
$(function () {
$("#navbar").load("include/navbar.html");
$("#footer").load("include/footer.html");
});
</script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript" src="js/vanilla-tilt.js"></script>
<script type="text/javascript">
VanillaTilt.init(document.querySelector(".3d-effect"), {
max: 25,
speed: 400
});
//It also supports NodeList
VanillaTilt.init(document.querySelectorAll(".3d-effect"));
</script>
</body>
</html>