-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (43 loc) · 1.05 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Yuguo's place</title>
<style>
body{
margin: 0;
padding: 0;
background: black;
}
object {
width: 100%;
object-fit: cover;
}
.svg-container {
margin: 0;
padding: 0;
}
.link:hover {
fill: #8888ff;
}
</style>
</head>
<body>
<div class="svg-container">
<object data="header.svg" type="image/svg+xml">
</object>
</div>
<div class="svg-container">
<object data="index.svg" type="image/svg+xml">
</object>
</div>
<div class="svg-container">
<object data="footer.svg" type="image/svg+xml">
</object>
</div>
<!--<img src="footer.svg" style="width:100%"/>-->
</body>
<!--
<body style="background:black; background-image:url(test.svg); background-size:100%; background-position:top center; background-repeat: no-repeat">
</body>
-->
</html>