-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathindex.html
119 lines (109 loc) · 3.28 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<title>Alias Kickstarter</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<link
rel="stylesheet"
href="https://www.w3schools.com/lib/w3-theme-black.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body id="myPage">
<!-- Sidebar on click -->
<nav
class="w3-sidebar w3-bar-block w3-white w3-card w3-animate-left w3-xxlarge"
style="display: none; z-index: 2"
id="mySidebar"
>
<a
href="javascript:void(0)"
onclick="w3_close()"
class="w3-bar-item w3-button w3-display-topright w3-text-teal"
>Close
<i class="fa fa-remove"></i>
</a>
<a href="#" class="w3-bar-item w3-button">Link 1</a>
<a href="#" class="w3-bar-item w3-button">Link 2</a>
<a href="#" class="w3-bar-item w3-button">Link 3</a>
<a href="#" class="w3-bar-item w3-button">Link 4</a>
<a href="#" class="w3-bar-item w3-button">Link 5</a>
</nav>
<!-- Team Container -->
<div class="w3-container w3-padding-64 w3-center" id="team">
<h2>OUR TEAM</h2>
<p>Meet the team - our office rats:</p>
<div class="w3-row">
<br />
<div class="w3-quarter">
<img
src="images/who.jpg"
alt="Boss"
style="width: 45%"
class="w3-circle w3-hover-opacity"
/>
<h3>Venkatesh Chaturvedi</h3>
<p>OG Boss Man</p>
</div>
<div class="w3-quarter">
<img
src="images/stark.jpg"
alt="Boss"
style="width: 37%"
class="w3-circle w3-hover-opacity"
/>
<h3>Kanish Bodhwani</h3>
<p>Tech Lead</p>
</div>
<div class="w3-quarter">
<img
src="images/freak.jpg"
alt="Boss"
style="width: 45%"
class="w3-circle w3-hover-opacity"
/>
<h3>Rohan Raj Gupta</h3>
<p>Control Freak</p>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="w3-container w3-padding-32 w3-theme-d1 w3-center">
<p>
Powered by
<a href="https://www.w3schools.com/w3css/default.asp" target="_blank"
>w3.css</a
>
</p>
</footer>
<script>
// Script for side navigation
function w3_open() {
var x = document.getElementById('mySidebar');
x.style.width = '300px';
x.style.paddingTop = '10%';
x.style.display = 'block';
}
// Close side navigation
function w3_close() {
document.getElementById('mySidebar').style.display = 'none';
}
// Used to toggle the menu on smaller screens when clicking on the menu button
function openNav() {
var x = document.getElementById('navDemo');
if (x.className.indexOf('w3-show') == -1) {
x.className += ' w3-show';
} else {
x.className = x.className.replace(' w3-show', '');
}
}
</script>
<script src="./index.js"></script>
</body>
</html>