-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 2.18 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
<!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>Venkateshwara Studios</title>
<!--Static stylesheet-->
<link rel="stylesheet" href="./css/static.css">
<!--Transition stylesheet-->
<link rel="stylesheet" href="./css/transitions.css">
<!--Font awesome web application cdn-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--Google fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap" rel="stylesheet">
<!--Cursive font in homepage-->
<link href="https://fonts.googleapis.com/css2?family=Cookie&family=Great+Vibes&display=swap" rel="stylesheet">
<!--Font awesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body class="home-body">
<!--Top nav start-->
<div class="navbar">
<img src="./images/logo-removebg.png" alt="Logo">
<ul class="nav-list">
<li class="nav-options"><a href="index.html">Home</a></li>
<li class="nav-options"><a href="about.html">About us</a></li>
<li class="nav-options" id="dropdown"><a href="#">Photo works</a>
<div class="dropdown-content">
<a href="wedding.html">Wedding</a>
<a href="kids.html">Kids</a>
</div></li>
<li class="nav-options"><a href="testimonials.html">Testimonials</a></li>
</ul>
<a href="about.html#form-enquire"><button class="enquire-hp">Enquire Now</button></a>
</div>
<!--Top nav end-->
<!--Content section homepage-->
<div class="content-section">
<img src="./images/square.png" class="square">
<h2>If you see something that moves you, come with us
and then snap it, we keep a moment.</h2>
<video src="./images/giphy.mp4"
autoplay muted loop ></video>
</div>
<!--End of content section-->
</body>
</html>