-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathtarget-logo.html
More file actions
56 lines (51 loc) · 1.17 KB
/
target-logo.html
File metadata and controls
56 lines (51 loc) · 1.17 KB
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
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>Target Logo</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.innermostcircle{
width: 55px;
height: 55px;
position: relative;
top: 22px;
left: 22px;
border-radius: 50%;
background-color: #CC0000;
}
.innercircle{
width: 100px;
height: 100px;
border-radius: 50%;
background-color: white;
}
.circle
{
width: 100px;
height: 100px;
border-radius: 50%;
position:relative;
padding:20px;
background-color:#CC0000;
}
.text{
color: #CC0000;
margin: 0 auto;
margin-left: 20px;
font-family: Helvetica;
font-weight: 700;
}
</style>
</head>
<body>
<div class="circle">
<div class="innercircle">
<div class="innermostcircle">
</div>
</div>
</div>
<h1 class="text"> TARGET</h1>
</div>
</body>
</html>