-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
142 lines (99 loc) · 2.26 KB
/
Index.html
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html>
<style>
.main {
margin-left: 150px;
margin-top: 50px;
font-family: Arial, Helvetica, sans-serif;
}
.box {
display: flex;
text-align: left;
font-size: 11px;
margin-top: -160px;
}
#box1, #box2, #box3 {
padding-top: 20px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 30px;
margin: 10px;
box-shadow: 0px 0px 30px 10px rgb(0, 175, 255);
border-radius: 5px;
width: 150px;
height: 150px;
background: white;
}
h1{
margin-left: 20px;
font-size: 25px;
}
h2{
font-size: 20px;
color: darkblue;
}
#circle3 {
width: 80px;
height: 80px;
background: blue;
opacity: 1;
border-radius: 50%;
margin-left: -30px;
margin-top: 120px;
}
#circle2 {
width: 80px;
height: 80px;
background: rgba(45, 45 ,45, 0.2);
border-radius: 50%;
margin-left: 580px;
margin-top: -190px;
}
#circle1 {
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(45deg, lightgrey, lightblue);
font-size: 20px;
color: darkblue;
text-align: center;
line-height: 45px;
}
img{
width: 600px;
height: 200px;
margin-top: -30px;
margin-left: 300px;
}
</style>
<head>
<title>Exercise HTML</title>
</head>
<body>
<div class="main">
<h1>
How Does It Work?
</h1>
<img src="geometric3.svg" alt="tlo">
<div class="box">
<div id="box1">
<div id="circle1">1</div>
<h2>Get the App</h2>
<p><font color="grey">Get Tribe on </font>Windows PC, Mac, Android <font color="grey">or</font> iOS.</p>
</div>
<div id="box2">
<div id="circle1">1</div>
<h2>Search</h2>
<p><font color="grey">Search for opportunities to help those around you. You can dedicate as little or as much time as you like.</font></p>
</div>
<div id="box3">
<div id="circle1">2</div>
<h2>Apply</h2>
<p><font color="grey">Once you've found someone to help, offer to help them and make their day by giving the support that they need.</font></p>
</div>
</div>
<div id="circle2"></div>
<div id="circle3"></div>
</div>
</body>
</html>