-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (87 loc) · 1.88 KB
/
index.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
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
<!doctype html>
<html lang="en">
<head>
<title>Corey Livinghouse</title>
</head>
<style>
h1{
margin-top:10px ;
margin-bottom:5px;
}
.main-content{
/* width-min:300px; */
display: flex;
flex-direction: row;
height: 100%;
}
.bio-card{
width: 20em;
float: right;
border: 1px grey solid;
background-color: #F8F9FA;
margin: 6px 0px 6px 12px;
padding: 3px;
}
.bio-card img{
margin: 0px 10px;
width: auto;
}
.card-title{
text-align:center;
}
.bio-card-img{
width: 100%;
display: flex;
justify-content: center;
}
.img-caption{
text-align: center;
margin-top: 0px;
font-size: 10px;
}
.flex-row {
height: auto;
display: flex ;
flex-direction: row ;
width: 100%;
justify-content: center;
}
.flex-row p{
height: 100%;
margin: 0px 0px;
width: 50%;
text-align: left;
}
</style>
<body>
<hr>
<h1><b>Corey Livighouse</b></h1>
<hr>
<div class="main-content">
<div class="bio-info">
bio
</div>
<div class="bio-card">
<div class="card-title">Corey Livinghouse</div>
<div class="bio-card-img">
<img src="./images/me.png" alt="">
</div>
<p class="img-caption">Picture of corey</p>
<div class="flex-row">
<p><b>Born</b></p>
<p>Pennsylvania</p>
</div>
<div class="flex-row">
<p><b>Alma Mater</b></p>
<p><a href="https://www.fleetwoodasd.k12.pa.us/">Fleetwood ASD</a><br>
<a href="https://racc.edu">RACC</a>
</p>
</div>
<div class="flex-row">
<p><b>Born</b></p>
<p>Pennsylvania</p>
</div>
</div>
</div>
</body>
</html>