-
Notifications
You must be signed in to change notification settings - Fork 0
/
icons.html
28 lines (26 loc) · 1.11 KB
/
icons.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Icons</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="weather-icons/css/weather-icons.css" />
</head>
<body style="background: grey">
<p>
<div style="width: 16px; height: 16px; background: white; display: flex; justify-content: center; align-items: center;">
<i class="wi wi-day-sunny-overcast" style="position: relative; top: 2px; left: 1px; font-size: 10px;"></i>
</div>
</p>
<p>
<div style="width: 96px; height: 96px; background: white; display: flex; justify-content: center; align-items: center;">
<i class="wi wi-day-sunny-overcast" style="font-size: 53px; position: relative; top: 8px; left: 1px;"></i>
</div>
</p>
<p>
<div style="width: 256px; height: 256px; background: white; display: flex; justify-content: center; align-items: center;">
<i class="wi wi-day-sunny-overcast" style="font-size: 150px; position: relative; top: 15px;"></i>
</div>
</p>
</body>
</html>