-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
33 lines (30 loc) · 1.46 KB
/
about.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
<?php
session_start();
?>
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<!-- Bootstrap CSS -->
<link href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css' rel='stylesheet' integrity='sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3' crossorigin='anonymous'>
<title>About</title>
</head>
<body>
<?php
include 'header.php';
?>
<div class='container my-3'>
<center>
<h3>About Us</h3>
<img src="images/img1.jpeg" alt="talent" class="mb-3 rounded img-fluid" height="300px">
</center>
<p>
<b>The Talent Hunt Exam</b> is one of the most prestigious exams conducted for school students for class 10th. The exams as the name suggest identifying hidden talent in school children. The organization believes that all children are blessed with unique qualities. Parents must expose their talent, polish it and present it in front of the world. The exam is conducted in subjects of syllabus covering High School and some General Knowledge.
</p>
</div>
<?php include 'footer.php'; ?>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js' integrity='sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p' crossorigin='anonymous'></script>
</body>
</html>