-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (70 loc) · 2.62 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
<!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>Cat Facts</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="./images/paws.png">
</head>
<body>
<nav>
<div class="left-nav">
<span>CAT FACTS</span>
</div>
<div class="right-nav">
<ul>
<li id="home-link">Home</li>
<li id="category-link">Cats</li>
<li id="contact">Contact</li>
</ul>
</div>
</nav>
<!-- Home section starts -->
<section class="Home-Page">
<div class="Left-home">
<h2>The right Place to learn <br>Cat Facts.</h2>
</div>
<div class="Right-home">
<img src="./images/cat1.png" alt="">
</div>
</section>
<!-- Home section ends -->
<!-- Cat section starts -->
<section class="cats-section-page">
<!-- <div class="Cat-title">
<span>Cat Facts</span>
</div> -->
<div class="container mt-5" id="main-container">
<div class="row mt-3 mb-3" id="cat-categories" hidden>
<h3>CATS FACTS</h3>
</div>
</div>
</section>
<!-- contact section starts -->
<section class="contact-page">
<form >
<div id="contact-txt">
<h1>CONTACT US</h1>
<P>We are here to help you, Feel free to Reach Us.</P>
</div>
<div id="contact-info">
<input type="text" placeholder="Name">
<input type="email"placeholder="Email">
<textarea ></textarea>
</div>
<div id="contact-submit">
<button type="submit">
submit
</button>
</div>
</form>
</section>
<!-- contact section ends -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<script src="./main.js"></script>
</body>
</html>