-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
74 lines (64 loc) · 1.75 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
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
<?php $dir = ""; include($dir . "/header.php"); ?>
<style media="screen">
#home {
display: block;
color: white;
background-color: rgba(0, 46, 102, 0.8);
border-radius: 100%;
font-size: 2rem;
line-height: 4rem;
height: 4rem;
width: 4rem;
}
body{
min-height: 100vh;
background: #a180e8;
background: -webkit-linear-gradient(45deg, #1947ab, #a180e8);
background: -o-linear-gradient(45deg, #1947ab, #a180e8);
background: -moz-linear-gradient(45deg, #1947ab, #a180e8);
background: linear-gradient(45deg, #1947ab, #a180e8);
}
.wrap-col{
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
padding: 33px 30px;
}
#container1 {
margin-top: 50px;
/* float:left; */
width:80%;
text-align: center;
}
#col1 {
float:left;
width:50%;
/* background:red; */
}
#col2 {
float:left;
width:50%;
/* background:yellow; */
}
</style>
<a href = "index.php" id = "home"><i class="fa fa-home" aria-hidden="true" style="margin-left: 1rem;"></i></a>
<div class="header" style="text-align: center;">
<h2 style="font-size: 60px; color: blue;">About Me</h2>
</div>
<div class = "wrap-col">
<div id="container1">
<div id="col1">
<h2><u> Instructor Info </u></h2>
<img src="img/img-01.png" alt="Instructor Picture" style="float: left">
<p style="float: none; margin-left: 20px; ">text here jflfjdalkfjdaslfj lfjlsfjlfjlajlk jlk jlk jflasjfldkasjf lj kl;asjfl ;ajdlfdjalk jlkfj ladjf sadkl</p>
</div>
<div id="col2">
<h2><u> Class Info </u></h2>
</div>
</div>
</div>