-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (82 loc) · 4.58 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="">
<meta property="og:image" content="exo-images/Purple Circle.png">
<meta name="author" content="Prathik Pradeep">
<meta name="keywords" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SEF Project</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Lora:400,700|Montserrat:300" rel="stylesheet">
<link rel="icon" href="exo-images/favicon.png">
</head>
<body style="overflow-x: hidden;">
<div style="width: 100vw; height: 98vh; background-image: url(images/background.png);background-repeat: no-repeat; background-size: 100% 100%; border-bottom: 3px solid goldenrod;">
<h1 style="font-family: 'Montserrat', sans-serif; text-align: center; color: white; font-size: 700%; padding-top: 10%;">A 3D Model</h1>
<div class="text-center">
<button class="btn btn-lg home-btn btn1" style="border-radius: 80px; color: white; margin-top: 5%; font-family: 'Montserrat', sans-serif; margin-right: 1%; background-color: #0d6efd;" data-bs-toggle="modal" data-bs-target="#modal" data-backdrop="false">Open 3D Model</button>
<a><button class="btn btn-lg home-btn btn2" style="border-radius: 80px; color: white; margin-top: 5%; font-family: 'Montserrat', sans-serif; background-color: goldenrod;">View Our Research</button></a>
</div>
<!-- Modal -->
<div class="modal fade" id="modal" tabindex="-1" aria-labelledby="modal" aria-hidden="true" style="font-family: 'Montserrat', sans-serif;">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content card">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel" style="color: white;">3D Model</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<h1>3D Model Goes Here</h1>
</div>
</div>
</div>
</div>
</div>
<div style="width: 100vw; background-color: seashell; font-family: 'Montserrat', sans-serif; color: black; border-bottom: 3px solid goldenrod;">
<h1 style="text-align: center; padding-top: 3%; font-size: 400%;">About Us</h1>
<div class="row p-5">
<div class="col-md-6" style="overflow-wrap: break-word;">
<h1 style="text-align: center;">Harish Ganesh</h1>
<hr style="margin-left: 5%; margin-right: 5%; height: 1%;">
<a>Coming Soon.</a>
</div>
<div class="col-md-6" style="overflow-wrap: break-word;">
<h1 style="text-align: center;">Prathik Pradeep</h1>
<hr style="margin-left: 5%; margin-right: 5%; height: 1%;">
<a>Coming Soon.</a>
</div>
</div>
</div>
<div style="width: 100vw; height: 90vh; background-color: #2c2f34; font-family: 'Montserrat', sans-serif; color: white;">
<h1 style="text-align: center; padding-top: 3%; font-size: 400%;">Our Research</h1>
<h4 style="color: white; text-align: center;">Coming Soon.</h4>
</div>
<!-- Footer -->
<div style="width: 100vw; height: 10vh; background-color: black; font-family: 'Montserrat', sans-serif; color: white;">
<h5 style="padding-top: 2%; text-align: center;">Copyright © 2021 Prathik Pradeep and Harish Ganesh. All Rights Reserved</h5>
</div>
<script src="script.js"></script>
</body>
</html>
<style>
.card {
backdrop-filter: blur(4px) saturate(200%);
-webkit-backdrop-filter: blur(4px) saturate(200%);
background-color: rgba(209, 213, 219, 0.3);
border-radius: 12px;
border: 1px solid rgba(209, 213, 219, 0.3);
box-shadow: black;
}
.home-btn:hover {
box-shadow: 1px 5px 10px black;
}
.btn1:hover {
background-color: #0d6dfdd7 !important;
}
.btn2:hover {
background-color: rgba(218, 165, 32, 0.842) !important;
}
</style>