-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaboutus.php
81 lines (69 loc) · 2.14 KB
/
aboutus.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
<?php
$define_variables_php= 'define_variables.php';
require $define_variables_php;
require $db_connect_php;
require $query_code_problem_php;
?>
<html>
<head>
<?php
require $metatags_php;
?>
<link href="css/bootstrap.min.css" rel="stylesheet" type="css">
<link href="css/custom.css" rel="stylesheet" type="text/css">
<link href="css/home-page-css.css" rel="stylesheet" type="text/css">
<link href="css/aboutus.css" rel="stylesheet" type="text/css">
<script src="js/respond.min.js" type="javascript"></script>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '1178134082200874',
xfbml : true,
version : 'v2.5'
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<!--<script src="js/fb_like_share.js" type="javascript"></script>-->
<?php
require $firstview_php;
?>
<div class="main-content">
<div class="row">
<div class="col-xs-3"></div>
<div class="col-xs-6">
<h1>About Us</h1>
<h3>Think Twice, Code Once</h3>
<div class="aboutus_div">
We encourage Competitive Coding. We provide solutions to many problems of spoj.
We believe in helping coders to get solutions to the spoj problems, they are
trying to solve and are unable to do it. We encourage coders to learn elegant
solutions. We neither expect nor want to encourage copying.
</div>
<div>
<div>This website is developed by <b>Ankit Kumar</b></div>
<?php
include 'social_media_link.php';
?>
</div>
</div>
<div class="col-xs-3"></div>
</div>
</div>
<?php
require $footer_php;
?>
<!-- Javascript -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>