-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
124 lines (105 loc) · 4.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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel='stylesheet' href='https://use.fontawesome.com/releases/v5.7.0/css/all.css' integrity='sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ' crossorigin='anonymous'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script src="https://kit.fontawesome.com/yourcode.js"></script>
<title>About Us</title>
<style>
body {
background-image: url(star.jpeg);
width: auto;
height: 100%;
}
h1 {
color: azure;
border-bottom: 5px;
border-color: white;
}
h2 {
color: azure;
text-align: center;
}
.container {
width: 100%;
height: 100%;
}
.img-circle {
width: 80%;
height: 100%;
}
.panel-footer {
text-align: center;
}
.contact {
color: azure;
}
#centerimage {
align-content: center;
margin-left: 30px;
}
h4 {
color: azure;
}
#himofb {
color: white;
}
.heading {
margin-top: 20px;
font-size: 70px;
color: aliceblue;
}
</style>
</head>
<body>
<div class="container">
<div>
<p align="center" class="heading"> Meet Our Team</p>
</div>
<br>
<div class="row">
<div class="col-sm-4">
<h2>Mahmudul Hasan Himo</h2>
<h4 align="center"> Front-end Developer</h4>
<img src="himopp.jpg" class="img-circle" alt="" id="centerimage">
<div class="contact">
<h3 align="center"> Contact Info</h3>
<p align="center"><i class="fab fa-facebook-f"></i> <a href="https://www.facebook.com/himaloy.reabok" id="himofb"> Mahmudul Hasan</a></p>
<p align="center"> <i class="fas fa-envelope"></i> himo@gmail.com</p>
<p align="center"> <i class="fas fa-phone"></i> 01850028662 </p>
</div>
</div>
<div class="col-sm-4">
<h2>Minhaz Reza Hasan</h2>
<h4 align="center"> Front-end Developer</h4>
<img src="minhazpp.jpg" class="img-circle" alt="" id="centerimage">
<div class="contact">
<h3 align="center"> Contact Info</h3>
<p align="center"><i class="fab fa-facebook-f"></i> <a href="https://www.facebook.com/mreza.hasan.1" id="himofb">Minhaz Reza Hasan </a> </p>
<p align="center"> <i class="fas fa-envelope"></i> <a href="mailto:minhazreza5@gmail.com" id="himofb">Minhazreza@gmail.com</a></p>
<p align="center"> <i class="fas fa-phone"></i> 01850028662 </p>
</div>
</div>
<div class="col-sm-4">
<h2>MD Rokan Uddin</h2>
<h4 align="center"> Back-end Developer</h4>
<img src="rokanvai.jpg" class="img-circle" id="centerimage" height="200px" width="300px">
<div class="contact card">
<div class="card-body">
<h3 align="center"> Contact Info</h3>
<p align="center"><i class="fab fa-facebook-f"></i> <a href="https://www.facebook.com/asrafuzzaman.adnan" id="himofb"> Rokan Uddin</a></p>
<p align="center"> <i class="fas fa-envelope"></i><a href="mailto:rokanu55@gmail.com" id="himofb"> rokanu55@gmail.com</a> </p>
<p align="center"> <i class="fas fa-phone"></i> 01850028662 </p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>