-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudentpro.html
86 lines (65 loc) · 2.39 KB
/
studentpro.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
<html>
<head>
<title>TESTCO Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Required JS scripts -->
<!-- Jquery -->
<script src="jquery.js"></script>
<!-- Bootstrap -->
<link href="bootflat/bootstrap/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="bootflat/css/font-awesome.min.css" rel="stylesheet" media="screen">
<link href="bootflat/css/bootflat.css" rel="stylesheet" media="screen">
<link href="bootflat/css/bootflat-extensions.css" rel="stylesheet" media="screen">
<link href="bootflat/css/bootflat-square.css" rel="stylesheet" media="screen">
<script src="js/index.js"></script>
<script src="js/profilestudent.js"></script>
<link href="index.css" rel="stylesheet" media="screen">
<!-- Required CSS Scripts -->
<link rel="stylesheet" type="text/css" href="css/index.css">
</head>
<body onload="allEvents();loadStudentProfiles();">
<div id="header"></div>
<!--place stuff below-->
<div id="zabody">
<div class="container">
<div id="left" class="left">
<br>
<br>
<a href="#"><img src="authors\defaultprofileimage.png" height="150" /></a>
<a href="edit_profile.html">Edit Profile </a>
<div class="data">
<h1 id = "name">Rashmi Raghunandan</h1>
<h2 id = "place">Bangalore,India</h2>
<h4><a href="http:myurl.com//">http://myurl.com/</a></h4>
<h1> About Me: </h1>
<p id = "about">
Email: [email protected]
</p>
</div>
</div>
<div id ="right" class="right">
<br>
<br>
<form>
<h4>When do you want to write the test?</h4> <br><input type="date" name="bday"><br><br>
<button type="button" class="btn btn-success">Check for availability</button>
<br><br>
</form>
<br>
<a href="http://localhost/testco/syllabus.html">View Syllabus</a><br>
<div class="head"><h1>Mock Tests</h1></div>
<div class="boxy">
<p>Keep working on Mock Tests to better yourself!</p>
<div class="badgeCount">
<a href="http://localhost/testco/exam/test.html">Mock Test 1</a><br>
<a href="http://localhost/testco/exam/test2.html">Mock Test 2</a><br>
<a href="http://localhost/testco/exam/test.html">Mock Test 3</a><br>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>