-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
40 lines (40 loc) · 1.15 KB
/
Contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
</head>
<body>
<div class="flex-container">
<div class="card" style="width: 18rem">
<img src="./Benj.jpg" class="card-img-top" alt="sunflower" />
<div class="card-body">
<h5 class="card-title">My Personal Info</h5>
<p class="card-text">
Name: Mustafa BenJamin<br>
Email: [email protected]<br>
Adress: Hyde Park Southside 221<br>
</p>
<a href="#" class="btn btn-primary">Help </a>
</div>
</div>
</div>
<style>
.flex-container {
display: flex;
height: 100vh;
justify-content: center;
}
body{
background-color: #5f0f40;
}
</style>
</body>
</html>