forked from biru-codeastromer/Endsemproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestimonials.html
117 lines (107 loc) · 4.38 KB
/
testimonials.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ivory Luxe | Our Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<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=Herr+Von+Muellerhoff&display=swap" rel="stylesheet">
<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=Sour+Gummy:ital,wght@0,100..900;1,100..900&family=Tangerine:wght@400;700&display=swap" rel="stylesheet">
<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=Cormorant+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<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=Texturina:ital,opsz,wght@0,12..72,100..900;1,12..72,100..900&display=swap" rel="stylesheet">
<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=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<style>
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Global Styles */
body {
font-family: 'Poppins', sans-serif;
background-color: rgba(236, 236, 234, 0.943);
color: #ecf0f1;
overflow-x: hidden;
}
/* Navbar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
position: fixed;
width: 100%;
top: 0;
z-index: 100;
background: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(20, 24, 24, 0.527), rgb(0, 0, 0));
animation: navbargradientAnimation 10s ease infinite;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.navbar a {
text-decoration: none;
}
/* Back to Top */
#back-to-top {
position: fixed;
bottom: 20px;
right: 0px;
background-color: #dbe2eaac;
color: rgb(27, 25, 25);
padding: 5px 5px;
text-align: center;
text-decoration: none;
font-size: 10px;
display: none;
z-index: 1000;
}
#back-to-top:hover {
background-color: #d6bd42;
}
</style>
</head>
<body>
<!-- Header -->
<header class="header">
<nav class="navbar">
<div class="logo">
<a href="index.html"><h1 style="font-family: 'Herr Von Muellerhoff', sans-serif;">Ivory Luxe</h1></a>
</div>
<ul class="nav-links" style="font-family:Cormorant SC ;">
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- Back to Top -->
<a href="#" id="back-to-top" title="Back to top">Back to top</a>
<footer>
<p style="font-family: Vollkorn;">© 2024 Ivory Luxe | All Rights Reserved</p>
</footer>
<script>
window.addEventListener('scroll', function () {
const backToTop = document.getElementById('back-to-top');
if (window.scrollY > 1900) {
backToTop.style.display = 'block';
} else {
backToTop.style.display = 'none';
}
});
</script>
</body>
</html>