40 lines
909 B
HTML
40 lines
909 B
HTML
<!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>
|
|
* {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
background-color: #f1f1f1;
|
|
}
|
|
div {
|
|
width: 270px;
|
|
height: 253px;
|
|
background-color: white;
|
|
border-radius: 15px;
|
|
margin: 50px auto;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
img {
|
|
margin-top: 40px;
|
|
}
|
|
#p1 {
|
|
line-height: 40px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<img src="./images/liveSDK.svg" alt="">
|
|
<p id="p1">抖音直播SDK</p>
|
|
<p id="p2">包含抖音直播看播功能</p>
|
|
</div>
|
|
</body>
|
|
</html> |