-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
166 lines (154 loc) · 5.32 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!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>Hi there!</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<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=Architects+Daughter&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css">
</head>
<body>
<section class="header">
<nav>
<a href="index.html"> <img class="logo" src="images/logo.png" alt="kuch bhi"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times-circle" onclick="hideMenu()"></i>
<ul>
<li>
<a href="">| HOME</a>
</li>
<li>
<a href="">| ABOUT ANIME</a>
</li>
<li>
<a href="">| CONTACT US</a>
</li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<div class="text-box">
<h1>Hey there Anime Freaks!</h1>
<p> This is basically a Mock website Imma making at midnight with my eyes half closed already. yo I'm really putting efforts now so this better be good! This is a random thought but my intitial thoughts about any font are a shit. I really need practice there. I will get better eventually. Okay update time, This new font seems a lot better than the last one. I will continue this tomorrow. Signing off.</p>
<a href="" class="hero-btn">Do not click here!</a>
</div>
</section>
<!--------course-------->
<section class="course">
<h1> Anime List</h1>
<p>Kya hi Dekhega </p>
<div class="row">
<div class="course-col">
<h3>Dragon Ball Z</h3>
<p> Lorem Ipsum blah blah blah</p>
</div>
<div class="course-col">
<h3>Inazuma Eleven</h3>
<p> Lorem Ipsum blah blah blah</p>
</div>
<div class="course-col">
<h3>Nanatsu no Taizai</h3>
<p> Lorem Ipsum blah blah blah</p>
</div>
</div>
</div>
</section>
<!----------------------campus------------------->
<section class="campus">
<h1>Our Highlights</h1>
<p> Loorem Ipsum wali bakchodi.</p>
<div class="row">
<div class="campus-col">
<img src="images/h1.jpg">
<div class="layer">
<h3>Ye kya Hai</h3>
</div>
</div>
<div class="campus-col">
<img src="images/h2.jpg">
<div class="layer">
<h3>Ye sab kya Hai</h3>
</div>
</div>
<div class="campus-col">
<img src="images/h3.jpg">
<div class="layer">
<h3>ye dekhna</h3>
</div>
</div>
</div>
</section>
<!-------------------facilities------------>
<section class="facilities">
<h1>Our facilities</h1>
<p>Lorem Ipsum blah blah blah</p>
<div class="facilities-col">
<img src="images/background.jpg">
<h3> World famous ANIME</h3>
<p> Lorem ipsum blah blah blah</p>
</div>
<div class="facilities-col">
<img src="images/h4.jpg">
<h3> Largest Collection</h3>
<p> Lorem ipsum blah blah blah</p>
</div>
</section>
<!------------------Testimonial----------->
<section class="testimonials">
<h1>What our viewsers say </h1>
<p>Lorem Ipsum blah blah blah</p>
<div class="row">
<div class="tesimonials-col">
<img src="images/h5.jpg" class="abc">
<div>
<p>Lorem Ipsum blah blah blah</p>
<h3>Random namae</h3>
<i class="fa fa-star-half-o" ></i>
<i class="fa fa-star-half-o" ></i>
<i class="fa fa-star-half-o" ></i>
<i class="fa fa-star-half-o"></i>
<i class="fa fa-star" ></i>
</div>
</div>
<div class="tesimonials-col">
<img src="images/h1.jpg" class="bcd">
<div>
<p>Lorem Ipsum blah blah blah</p>
<h3>Doosra name</h3>
</div>
</div>
</div>
</section>
<!------------------Call to action------------>
<section class="cta">
<h1>Watch various Online favorite shows </h1>
<a href="" class="hero-btn">Contact Us</a>
</section>
<!------------footer--------------->
<section class="footer">
<h4>About Us</h4>
<p>Lorem ipsum blah blah blah</p>
<div class="icons">
<i class="fa fa-facebook" ></i>
<i class="fa fa-twitter" ></i>
<i class="fa fa-instagram" ></i>
</div>
</section>
<!---------JavaScript------------>
<script>
var navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right = "0";
}
function hideMenu(){
navLinks.style.right = "-200px";
}
</script>
</body>
</html>