-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutSection.html
49 lines (44 loc) · 1.97 KB
/
aboutSection.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>
<!-- Bootstrap Required Meta Tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Self Made Style Sheet -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style_homeSection.css">
<link rel="stylesheet" href="css/style_creatorsSection.css">
<link rel="stylesheet" href="css/style_projectSection.css">
<link rel="stylesheet" href="css/style_aboutSection.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>Immerse1905</title>
</head>
<body onload="loadStyles_aboutSection()">
<!-- About Us Section -->
<section id="aboutSection" class="webSection webSection_snap">
<div class="aboutScene">
<div class="container">
<div class="carousel text-center">
<div class="slide">11</div>
<div class="slide">10</div>
<div class="slide">9</div>
<div class="slide">8</div>
<div class="slide">7</div>
<div class="slide">6</div>
<div class="slide">5</div>
<div class="slide">4</div>
<div class="slide">3</div>
<div class="slide">2</div>
<div class="slide">1</div>
</div>
</div>
<div class="next" onclick="changeSlide_prev()"><img src="assets/aboutUs/arrow.png" style="transform: scaleX(-1);"></div>
<div class="prev" onclick="changeSlide_next()"><img src="assets/aboutUs/arrow.png"></div>
</div>
<img class="border border-dark border-5" src="assets/aboutUs/fg.png" id="aboutFG">
</section>
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script type="text/javascript" src="javascript/script_aboutSection.js"></script>
</body>
</html>