-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
120 lines (95 loc) · 5.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pacehut Tricks</title>
<link rel="stylesheet" href="./Public/CSS/index.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Da+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat+Subrayada&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet">
</head>
<body>
<div class="preload">
<img src="./Public/IMG/loaderGif.gif" alt="loader">
<h3>We are diving in....</h3>
</div>
<div class="show">
<nav id="nav">
<h2 id="logo">PaceHut</h2>
<a href="https://www.youtube.com/channel/UCZvVcYWi4dUwv-4hNtegx_w" id="youtube" target="_blank"></a>
<a href="https://www.instagram.com/mafiz._/" id="instagram" target="_blank"></a>
</nav>
<section id="main">
<ul class="nav_elements" id="nav_id">
<li><a href="./index.html">Home</a></li>
<li><a href="#card_id">Card</a></li>
<li><a href="./calc.html">CalC</a></li>
<li><a href="./contact.html" class="contact">Contact</a></li>
</ul>
<section class="container">
<section class="intro" id="intro_id">
<!-- Background animtion-->
<div class="background">
<div class="cube"></div>
<div class="cube"></div>
<div class="cube"></div>
<div class="cube"></div>
<div class="cube"></div>
</section>
<h2 class="heading_content">
A Place To Know The Secrets
</h2>
<section class="Card" id="card_id">
<h2 class="flipHide" id="flip-card">1. Flip Card</h2>
<div class="card">
<div class="card-inside">
<div class="card-content">
<div class="front-view">
<h3 class="title">
! Your Reign !
</h3>
<p class="front-para">
Just Focus and Observe
</p>
</div>
<div class="back-view">
<div class="back-para">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Amet quod hic iure facilis optio quibusdam magnam velit quam, praesentium porro.
</div>
</div>
</div>
</div>
</div>
<div class="hoverme">
Hover Above
</div>
<div class="clickme" onclick="rotate()">
<button class="clickBtn">Click Me</button>
</div>
<p class="codepen" data-height="400" data-theme-id="dark" data-default-tab="html,result" data-slug-hash="MWrmBOG" data-preview="true" data-user="mafiz" style="height: 600px; width: 400px;box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;">
<span>See the Pen <a href="https://codepen.io/mafiz/pen/MWrmBOG">
Untitled</a> by Md Mafizuddin (<a href="https://codepen.io/mafiz">@mafiz</a>)
on <a href="https://codepen.io">CodePen</a>.</span>
</p>
<script async src="https://cpwebassets.codepen.io/assets/embed/ei.js"></script>
</section>
<!-- <section>
2.Typo
</section> -->
<footer>
Copyright © www.pacehut.com All Rights Reserved
</footer>
</section>
</section>
</div>
<script src="./Public/JS/index.js"></script>
</body>
</script>
</html>