-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathhelp.php
More file actions
92 lines (81 loc) · 2.55 KB
/
help.php
File metadata and controls
92 lines (81 loc) · 2.55 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Infits</title>
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<style>
#content {
display: flex;
flex-direction: column;
height: 90%;
width: 90! important;
font-family: 'Poppins';
font-style: normal;
padding: 20px;
margin: 0px;
overflow: clip;
}
/*------------------HELP-----------------------*/
.help-box{
margin-left: 42px;
background: #FFFFFF;
border: 1px solid #F4F4F4;
box-shadow: 0px 8px 24px rgba(176, 190, 197, 0.32), 0px 3px 5px rgba(176, 190, 197, 0.32);
border-radius: 12px;
width: 90%;
padding: 5px;
margin: 10px;
}
.help-content{
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.help-text{
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: center;
}
</style>
</head>
<body>
<div id="page">
<?php include 'event_calendar.php'; ?>
<div id="content">
<!------------------------------------------------DASHBOARD--------------------------------------------------------->
<h1 style="font-size: 32px; color: #202224; font-weight: 600;">Help</h1>
<!-----------------------------------------------EVENTS--------------------------------------------------------->
<div class="center-flex">
<img src="images/help.png" height="300px">
</div>
<a href="faq.html" style="text-decoration: none;">
<div class="help-box">
<div class="help-content">
<img src="images/faq.png" style="margin-right:20px ;margin-left:20px ; height: 100px;">
<div class="help-text">
<p style="font-size: 20px; margin: 0;">FAQs
<br>
<p style="font-size: 15px; margin: 0; color:#747688;">Frequently Asked Questions
</div>
</div>
</div>
</a>
<a href="email.html" style="text-decoration: none;">
<div class="help-box">
<div class="help-content">
<img src="images/email.png" style="margin-right:20px ;margin-left:20px ; height: 100px;">
<div class="help-text">
<p style="font-size: 20px; margin-left: 10px; margin: 0;">EMAIL
<br>
<p style="font-size: 15px; margin: 0; color:#747688;">Reach us through Email
</div>
</div>
</div>
</a>
</div>
</body>
</html>