-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
127 lines (84 loc) · 4.15 KB
/
index.php
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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta name="keywords" content="Turington, Ramanujan College, Delhi University, Coding, PHP, C++, javascript, JAVA, Python, Ramanujan, DU, Software Development, Cell, Antha Prerna Cell, DU_CS, University of Delhi, website, app, Delhi, India, programmers, Developers, DevOps, Containers, Blockchain, Machine Learning, start up, freelancing ">
<meta name="title" content="Antha Prerna Cell">
<meta name="description" content="Software Development Cell of Ramanujan College, University Of Delhi">
<meta name="author" href="https://github.com/parthyadav3105/" content="Parth yadav">
<meta property="og:type" content="website">
<meta property="og:url" content="https://turington.in">
<meta property="og:site_name" content="Antha Prerna Cell">
<meta property="og:title" content="Antha Prerna Cell">
<meta property="og:description" content="Software Development Cell of Ramanujan College, University Of Delhi">
<meta property="og:image" itemprop="image" content="https:// ******** /apc-logo.png">
<title>Antha Prerna | Software Development Cell of Ramanujan College University Of Delhi</title>
<!-- Logo on tab -->
<link rel="icon" href="assets/apc-logo.png">
<!-- Add social media icon library -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<!--our css files-->
<link rel="stylesheet" href="stylesheets/index.css">
<link rel="stylesheet" href="stylesheets/home.css">
<link rel="stylesheet" href="stylesheets/team.css">
<link rel="stylesheet" href="stylesheets/projects.css">
<link rel="stylesheet" href="stylesheets/events.css">
<!--google fonts-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
</head>
<body onload="shiftFocusToHome()">
<nav>
<div id="nav-options" >
<div class="nav-options-input" onclick="loadPage('home')">Home</div>
<div class="nav-options-input" onclick="loadPage('apply')">Apply</div>
<div class="nav-options-input" onclick="loadPage('projects')">Projects</div>
<div class="nav-options-input" onclick="loadPage('events')">Events</div>
<div class="nav-options-input" onclick="loadPage('team')">Team</div>
<div class="nav-options-input" onclick="loadPage('contacts')">Contacts</div>
</div>
<script type="text/javascript">
function shiftFocusToHome(){
document.getElementById("projects").style.display = "none";
document.getElementById("events").style.display = "none";
document.getElementById("team").style.display = "none";
document.getElementById("home").style.display = "block";
}
function loadPage(id){
if(id!="contacts")
{
document.getElementById("home").style.display = "none";
document.getElementById("projects").style.display = "none";
document.getElementById("events").style.display = "none";
document.getElementById("team").style.display = "none";
if(id!="apply")
document.getElementById(id).style.display = "block";
document.getElementsByTagName("BODY")[0].scrollIntoView();
if(id=="apply")
{
document.getElementById("home").style.display = "block";
document.getElementById("apply").scrollIntoView();
}
}
else
{
document.getElementById(id).scrollIntoView();
}
}
</script>
</nav>
<!-- HOME page with id="home" -->
<?php include_once('home.php');?>
<!-- PROJECTS page with id="projects" -->
<?php include_once('projects.php');?>
<!-- EVENTS page with id="events" -->
<?php include_once('events.php');?>
<!-- TEAM page with id="team" -->
<?php include_once('team.php');?>
<footer id="contacts">
<img id="footer-logo" src="assets/apc-white-logo.png">
<strong> Antha Prerna Cell<sup>©</sup></strong>
<div class="footer-link"><a href="mailto:[email protected]">Mail-us <img src="assets/mail-logo.svg"></a></div>
<div class="footer-link"><a href="">Call-us <img src="assets/call-logo.svg"> +91 9810298704</a></div>
</footer>
</body>
</html>