-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (84 loc) · 3.78 KB
/
index.html
File metadata and controls
87 lines (84 loc) · 3.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="./TDC.png">
<title>TheDevCorp</title>
<link rel="stylesheet" href="./bootstrap.min.css">
<link rel="stylesheet" href="./styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Pacifico&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<span class="navbar-brand">
<img src="./TDC.png" alt="TDC logo" class="nav-logo" />
<strong>The Dev Corp</strong>
</span>
</nav>
<main style="margin-top: 50px; min-height: 100vh;">
<div class="h1 text-center">
Welcome to TheDevCorp!
</div>
<div class="h5 text-center">
We are an Open Source/Non-Profit Organization that works together to build projects for public use.
</div>
<div class="h5 text-center">
<a href="https://github.com/TheDevCorp" target="_blank" rel="noopener noreferrer">
Our Github Organization
</a>
</div>
<div>
<div class="text-center h4 mt-3">Meet the Owners:</div>
<ul class="nav nav-tabs justify-content-around">
<li class="nav-item mx-3" id="list1">
<a href="#tab1" data-toggle="tab">
<div class="text-center my-3">
<span class="text-center h3 name">Tanay Toshniwal</span>
</div>
</a>
</li>
<li class="nav-item mx-3" id="list2">
<a href="#tab2" data-toggle="tab">
<div class="text-center my-3">
<span class="text-center h3 name">Ritvik Jain</span>
</div>
</a>
</li>
</ul>
<div class="tab-content">
<div class="tab1 tab-pane fade in" id="tab1">
<div class="text-center my-3">
<a href="https://tanaytoshniwal.me" target="_blank" class="text-center h3 name">Tanay
Toshniwal</a>
</div>
<div style="width: 100vw;height: 100vh;">
<iframe id="site1" src="https://tanaytoshniwal.me" frameborder="0"
style="width: 100%;height: 100%;"></iframe>
</div>
</div>
<div class="tab2 tab-pane fade in" id="tab2">
<div class="text-center my-3">
<a href="https://ritvikjain.me" , target="_blank" class="text-center h3 name">Ritvik Jain</a>
</div>
<div style="width: 100vw;height: 100vh;">
<iframe id="site2" src="https://ritvikjain.me" frameborder="0"
style="width: 100%;height: 100%;"></iframe>
</div>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="row justify-content-center align-items-center mt-2">
<span class="material-icons m-2">code</span> with <span class="material-icons beat m-2">favorite</span> by
<a href="https://thedevcorp.github.io/" target="_blank" rel="noopener noreferrer" tabindex="-1"
class="mx-2">TDC</a>!
</div>
</footer>
<script src="./jquery.min.js"></script>
<script src="./bootstrap.min.js"></script>
</body>
</html>