-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (60 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.title--div {
background-color: cadetblue;
width: fit-content;
padding: 10px;
border-radius: 6px;
margin-left: 40%;
}
.image--twiine {
border-radius: 15px;
width: 20%;
float: left;
margin-bottom: 25px;
margin-left: 20px;
box-shadow: 6px 10px 7px rgb(5, 21, 7);
}
.parent--div {
font-family: sans-serif;
margin: auto;
background-color: rgb(206, 188, 188);
}
.bio--info {
width: fit-content;
padding: 20px;
width: 40%;
background-color: deepskyblue;
float: left;
margin-left: 25px;
border-radius: 5px;
box-shadow: 0px 8px 8px rgb(63, 13, 13);
}
.image--info {
float: left;
}
.clearfix::after {
content: "";
display: table;
clear: both;
}
</style>
</head>
<body>
<div class="parent--div">
<div class="title--div">THE LIFE OF TWIINE ENOCK</div>
<div class="image--info">
<img src="twiinek.jpeg" alt="" class="image--twiine">
<div class="bio--info">
TWIINE ENOCK IS ALL IN ALL THE TIME!
</div>
</div>
<div class="clearfix"></div>
</div>
</body>
</html>