-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (50 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<title>Renny's Website</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" >
<link rel="stylesheet" href="/style.css">
<link rel="icon" type="image/x-icon" href="/assets/images/dog_icon.svg">
<script>
const page_id = 'about';
</script>
<script src="/script/site_header.js"></script>
<style>
.content-fill {
background-color: var(--col_bg1);
width: 100%;
height: 100%;
padding: 0.5vmax;
margin: 1vw;
display: flex;
flex-wrap: nowrap;
flex-direction: row;
}
.content-fill > div {
padding: 0.5vw;
height: 100%;
margin: 0.6vw;
}
.fill-side {
flex: 25%;
}
.fill-main {
flex: 75%;
}
img {
border-radius: 1vw;
width: 100%;
}
</style>
</head>
<body>
<site-header>
<div class="content-fill" slot="site-content">
<div class="fill-side">
<img src="/assets/images/me1.jpg" alt="it me">
</div>
<div class="fill-main">Hello</div>
</div>
</site-header>
</body>
</html>