-
Notifications
You must be signed in to change notification settings - Fork 0
/
disclaimer.html
91 lines (81 loc) · 3.98 KB
/
disclaimer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Disclaimer</title>
<link rel="stylesheet" href="./disc.css">
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Roboto:wght@400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css" integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js" integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
<script src="https://kit.fontawesome.com/181ea7bd20.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@900&display=swap" rel="stylesheet">
<script>
document.addEventListener("DOMContentLoaded",()=>{
fetch("./footer.html").then(response=>{
if(!response.ok){
throw new Error("not fetched")
}
return response.text();
}).then(html=>{
document.querySelector(".footercontent").innerHTML=html
})
.catch(err=>{
console.log(err)
})
});
//navbar
document.addEventListener("DOMContentLoaded", () => {
fetch("./navbar.html").then(response => {
if (!response.ok) {
throw new Error("not fetech")
}
return response.text();
}).then(html => {
document.querySelector("header").innerHTML = html
const menubutton=document.querySelector('.menuiconc')
const navmenu=document.querySelector('nav ul')
if (menubutton && navmenu){
menubutton.addEventListener('click',()=>{
navmenu.classList.toggle('show')
})
}
else{
console.log("not found navbar and menubtn")
}
})
.catch(err => {
console.log(err)
})
})
</script>
</head>
<body>
<!-- navbar section -->
<header>
</header>
<!-- mainsection -->
<div class="main">
<div class="basesection">
<div class="d-flex justify-content-center pt-3">
<h2 style="font-size:clamp(1rem,10vw,38px);padding:30px; font-family: 'Cinzel Decorative', serif;" class="text-center">Reydon Resources Private Limited</h2>
</div>
<div class="container">
<div class="policy-content">
<h1 class="text-center mt-4">Disclaimer</h1>
<div class="content">
<p>This site is owned by the Reydon Resources Private Limited.</p>
<p>Though all efforts have been made to keep the content on this portal accurate and up-to-date, the same should not be construed as a statement of law or used for any legal purposes. All queries regarding the content of this portal may be directed to <a href="mailto:reydonrpl@gmail.com">reydonrpl@gmail.com</a>.</p>
<p>"Public Search of Trademark" Service is provided by the Office of the Controller General of Patents, Designs & Trade Mark.</p>
</div>
</div>
</div>
</div>
<div class="footercontent"></div>
</body>
</html>