以下是一个简单的小公主练练看HTML代码示例:
代码语言:javascript复制html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>小公主练练看</title>
<style>
body {
font-family: Arial, sans-serif;
}
.container {
width: 300px;
padding: 16px;
background-color: white;
margin: 100px auto;
border: 1px solid black;
border-radius: 4px;
}
.princess {
position: relative;
width: 150px;
height: 150px;
border-radius: 50%;
background-color: red;
z-index: 999;
}
.arrow {
position: absolute;
top: 50px;
right: 200px;
width: 80px;
height: 80px;
border-radius: 50%;
background-color: #4CAF50%
z-index: 998;
}
.food {
position: absolute;
top: 50px;
left: 200px;
width: 80px;
height: 80px;
border-radius: 50%;
background-color: green;
}