-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
148 lines (101 loc) · 4.08 KB
/
about.html
File metadata and controls
148 lines (101 loc) · 4.08 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<html>
<head>
<title>About The Ambanis</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<link href="css/style.css" type="text/css" rel="stylesheet">
<link href="css/grid.css" type="text/css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Cabin+Sketch:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<main>
<!--------------------- header --------------------------->
<header class="container">
<h1><a href="index.html"><img src="images/logo1.gif"></a></h1>
<nav>
<div class="slide">
<div class="slider">
<script>
var i = 0; // Start Point
var images = []; // Images Array
var time = 2000; // Time Between Switch
images[0] = "images/2.jpg";
images[1] = "images/0000.jpg";
images[2] = "images/000.jpg";
images[3] = "images/3_2.jpg";
images[4] = "images/3_4.jpg";
images[5] = "images/101.jpg";
function changeImg(){
document.slide.src = images[i];
// Check If Index Is Under Max
if(i < images.length - 1){
// Add 1 to Index
i++;
} else {
// Reset Back To O
i = 0;
}
// Run function every x seconds
setTimeout("changeImg()", time);
}
// Run function when page loads
window.onload=changeImg;
</script>
<img name="slide" width="900px">
</div>
<a class="prev"></a>
<a class="next"></a>
</div>
<ul class="menu">
<li> <a href="index.html" class="clr-1">Home</a> </li>
<li class="current"> <a href="about.html" class="clr-2">About The Ambanis</a> </li>
<li> <a href="bride.html" class="clr-3">About The bride</a> </li>
<li> <a href="pwc.html" class="clr-4">Pre Wedding Celeberations</a> </li>
<li> <a href="wd.html" class="clr-5">On the Wedding Day</a> </li>
<li> <a href="reception.html" class="clr-5">Wedding Reception</a> </li>
<li> <a href="news.html" class="clr-5">News</a> </li>
</ul>
</nav>
</header>
<!--------------------- content --------------------------->
<section class="content-bg">
<div class="container">
<aside class="adjust-1">
<div class="wrap-col">
<h2 class="top-6 p2">Members</h2>
<p class="text-1 p2">Mukesh Ambani</p>
<p class="text-1 p3">Neeta Ambani</p>
<p class="text-1 p3">Akash Ambani</p>
<p class="text-1 p3">Isha Ambani</p>
<p class="text-1 p3">Anant Ambani</p>
</div>
</aside>
<div class="adjust-2">
<div class="wrap-col">
<div class="block top-5">
<h2 class="clr-6 p6">Ambanis</h2>
<p class="clr-6">The Ambani family is the richest family of India and Mukesh Ambani alone holds a net worth of 4,390 crores USD. The Chairperson of Reliance Industries stands as the 19th richest person in the world.(Source: Forbes) He is married to Neeta Ambani and they have three children together. A daughter , Isha and two sons , Anant and Akash. Their private private 27-storey residence has three helicopter pads. Antilia is among the most expensive residence in the world. According to Forbes, the building is valued at over $2 billion.</p>
<div class="row">
<div class="adjust-1">
<div class="wrap-col">
<img src="images/3_1.jpg" width="500px" alt="" style="border-radius:16px; display:block; alignment:center" >
</div>
</div>
</div>
<div class="lists">
</div>
<!--------------------- footer --------------------------->
<footer>
<p>©2019 Manish</p>
<p> <a href="https://sfoly.com/" class="link">created </a> by <a href="https://sfoly.com/" class="link">Manish Kumar</a> | sfoly india</p>
</footer>
</div>
</div>
</div>
</section>
</main>
</body>
</html>