-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (89 loc) · 4.06 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
<!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>Camerry - Best Ice cream in Kerala</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<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=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
</head>
<body>
<header>
<nav>
<div class="left-nav nav">
<img class="logo" src="images/logo.svg" alt="">
</div>
<div class="center-nav nav">
<div class="nav-text">PRODUCTS</div>
<div class="nav-text">ABOUT US</div>
<div class="nav-text">MAKING</div>
<div class="nav-text">CAREER</div>
<div class="nav-text">CONTANT</div>
</div>
<div class="right-nav nav">
<div class="nav-icons"><i class="fa-brands fa-facebook-f fa-xl" style="color: #ffffff;"></i></div>
<div class="nav-icons"><i class="fa-brands fa-twitter fa-xl" style="color: #ffffff;"></i></div>
<div class="nav-icons"><i class="fa-brands fa-linkedin fa-xl" style="color: #ffffff;"></i></div>
<div class="nav-icons"><i class="fa-brands fa-instagram fa-xl" style="color: #ffffff;"></i></div>
<div class="nav-icons"><i class="fa-brands fa-youtube fa-xl" style="color: #ffffff;"></i></div>
</div>
</nav>
</header>
<section class="hero">
<img src="images/hero.png" alt="" class="hero-image">
</section>
<section class="content">
<div class="content-left">
<img src="images/content.png" alt="">
</div>
<div class="content-right">
<p>About us</p>
<h1>The perfect blend <br> of freshness,<br> quality, and taste.</h1>
<p>Indulge in heavenly scoops of real fruits, rich creamy milk and <br> lip-smacking natural flavours. Lose yourself in pleasure. Our ice <br> creams are like comfortable hugs for your taste buds.</p>
<button id="explore-button">EXPLORE</button>
</div>
</section>
<footer>
<div class="footer-top">
<div class="footer-top-left">
<p>Get in touch with us.</p>
<p>If you have any queries or feedback, we would love to hear from you!</p>
</div>
<div class="footer-top-right">
<button id="contactus-button">contact us</button>
</div>
</div>
<hr id="footer-break" noshade="noshade">
<div class="footer-bottom">
<div class="footer-bottom-left">
<img class="logo" src="images/logo.svg" alt="">
</div>
<div class="footer-bottom-center">
<ul>
<li>NUTRICREAMS PRIVATE LIMITED</li>
<li>Branch: :XV/274 , M.C Road, Okkal P.O,</li>
<li>Ernakulam, Kerala-683550</li>
<br>
<li>+91 9746 674 440</li>
<li>toll free no : 1800 889 2080</li>
<li>flavours@camerry.in</li>
</ul>
</div>
<div class="footer-bottom-right">
<ul>
<li>ABOUT US</li>
<li>MAKING</li>
<li>CAREER</li>
<li>MEDIA</li>
<li>CONTACT</li>
</ul>
</div>
</div>
</footer>
</body>
</html>