-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2024-28-08
40 lines (39 loc) · 1.28 KB
/
2024-28-08
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>august-28-2024</title>
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
</style>
</head>
<body>
<h1>this is a circle.</h1>
<svg width="100" height="100">
<circle cx="50" cy="50" r="50" fill="tomato"></circle>
</svg>
<svg width="100" height="100" style="margin-top: 10px">
<rect width="100" height="100" fill="blue"></rect>
</svg>
<p style="text-align: center">This is a square</p>
<svg width="100" height="200" style="margin-top: 20px">
<!-- Head -->
<circle cx="50" cy="30" r="20" fill="lightblue"></circle>
<!-- Body -->
<rect x="30" y="50" width="39" height="60" fill="lightblue"></rect>
<!-- Arms -->
<rect x="20" y="50" width="20" height="10" fill="lightblue"></rect>
<rect x="60" y="50" width="20" height="10" fill="lightblue"></rect>
<!-- Legs -->
<rect x="37" y="110" width="10" height="40" fill="lightblue"></rect>
<rect x="53" y="110" width="10" height="40" fill="lightblue"></rect>
</svg>
</body>
</html>