-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<title>Assignment</title>
<style>
body{
background-color: yellow;
}
</style>
</head>
<body>
<h1 class="text-5xl text-white font-bold text-center" style="margin-top: 100px;">Pinak Idea Lab</h1>
<div style="width: fit-content; margin: auto; margin-top: 30px;">
<div class="opacity-50" style="background-color: black; width: 100px; height: 100px; border-radius: 100%;"></div>
<div style="background-color: black; width: 5px; height: 5px; position: relative; left: 40px; bottom: 43px;"></div>
<div style="background-color: black; width: 5px; height: 5px; position: relative; left: 40px; bottom: 68px;"></div>
<div style="border: 3px;
width: 10px;
height: 50px;
border-radius: 0 100% 100% 0;
border-style: solid;
border-color: transparent black transparent transparent;
position: relative;
bottom: 85px;
left: 45px;"></div>
</div>
<div style="width: 100%; height: 100px; background-color: #f64566; margin-top: 131px;">
<div style="width: 0px; height: 0px; margin: auto;
border-left: 50px solid transparent;
border-top: 50px solid yellow;
border-right: 50px solid transparent"></div>
</div>
</body>
</html>