-
Notifications
You must be signed in to change notification settings - Fork 0
/
submitForms.php
56 lines (54 loc) · 1.06 KB
/
submitForms.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
<?php
require_once 'includes/header.php'; ?>
<!DOCTYPE HTML>
<html>
<head>
<style>
.f ol {
list-style: none;
counter-reset: my-awesome-counter;
}
.f li {
counter-increment: my-awesome-counter;
margin: 0.25rem;
padding: 0.30rem;
}
.f li::before {
content: counter(my-awesome-counter);
background: #662974;
width: 2rem;
height: 2rem;
border-radius: 50%;
display: inline-block;
line-height: 2rem;
color: white;
text-align: center;
margin-right: 0.5rem;
}
.f ol ol li::before {
background: #DE51FF;
}
.f ol ol ol li::before {
background: #EE9EFF;
}
body {
font-family: 'PT Serif', serif;
}
</style>
</head>
<body>
<div class="f">
<ol>
<li>Medical forms<ol>
<li><a href="#">Medical form (Annexature I)</a></li>
<li><a href="#">Undertaking (Annexature I)</a></li>
</ol></li>
<li>Establishment</li>
<li >Estate:<ol>
<li><a href="form1.php">Requisition form for community centre</a></li>
<li><a href="form2.php">Form for requesting iitbbs email</a></li>
</ol></li>
</ol>
</body>
</html>
<?php require_once 'includes/footer.php'; ?>