-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.html
140 lines (124 loc) · 4.04 KB
/
team.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="sub main.css">
<title>Philomath</title>
<link rel="icon" href="logo.png">
</head>
<body>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="index.html">Home</a>
<a href="read.html">Read on!</a>
<a href="submissions.html">Submissions</a>
<a href="team.html">Team</a>
<a href="aboutus.html">About us</a>
</div>
<div id="main">
<span style="font-size:30px;cursor:pointer; color: white;" onclick="openNav()">☰ Menu</span>
<h1 style="color:white">The Team</h1>
</div>
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "150px";
document.getElementById("main").style.marginLeft = "150px";
document.body.style.backgroundColor = "rgba(0,0,0,0.4)";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
document.getElementById("main").style.marginLeft= "0";
document.body.style.backgroundColor = "white";
}
</script>
<div class="subtitle">
<h4>
<br><br>
<img src="crop/sscrop.png" style="float: left; width: 90px; height: 90px; position:relative; left: -10px; top: 0px;">
SS Karthik
<br>
Writer and Web developer
<br>
Contact: [email protected]
<br>
Twitter: @ss_maniac
<Br><br>
<br>
<img src="crop/senthilcrop.png" style="float: left; width: 90px; height: 90px; position:relative; left: -10px; top: -10px;">
Senthil kumar
<br>
Writer and Web developer
<br>
Contact: [email protected]
<Br><br>
<br><br>
<img src="crop/rishabcrop.png" style="float: left; width: 90px; height: 90px; position:relative; left: -10px; top: -10px;">
Rishab VG
<br>
Writer and Content Editor
<br>
Contact: [email protected]
<Br>
Twitter: @rishab1305
<br><br><br><br>
Uttkarsh
<br>
Graphics designer
<Br><br>
<br>
</h4>
</div>
<div>
<h4 class="h42">
<img src="crop/vijaycrop.png" style="float: left; width: 90px; height: 90px; position:relative; left: -10px; top: 0px;">
Vijay
<br>
Writer and Social media Manager
<br>
Contact: [email protected]
<Br>
Twitter: @vxjoyie
<br>
<br><br>
<img src="crop/himankcrop.png" style="float: left; width: 90px; height: 90px; position:relative; left: -10px; top: -10px;">
Himank Jain
<br>
Writer
<br>
Contact: [email protected]
<Br><br><br><br>
<img src="crop/anandicrop.png" style="float: left; width: 90px; height: 90px; position:relative; left: -10px; top: -10px;">
Anandi
<br>
Writer
<Br>
Contact: [email protected]
<br><br><br><br>
Sirisha
<br>
Writer, Content editor and Social media Manager
<br>
Contact: [email protected]
<br>
Twitter: @sirisha2112_
<br><br>
</h4>
</div>
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["setCookieDomain", "*.philomathreadz.netlify.app"]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="https://philomathreadznetlifyapp.matomo.cloud/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.src='//cdn.matomo.cloud/philomathreadznetlifyapp.matomo.cloud/matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</body>
</html>