forked from vinodselvin/css-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathandroid-logo.html
More file actions
31 lines (27 loc) · 734 Bytes
/
android-logo.html
File metadata and controls
31 lines (27 loc) · 734 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Android Logo</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.android{
}
.android .head{
border: 1px solid green;
border-top-left-radius: 50%;
border-top-right-radius: 50%;
height: 30px;
width: 60px;
}
</style>
</head>
<body>
<div class="android">
<div class="head">
</div>
<div class="body">
</div>
</div>
</body>
</html>