-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (23 loc) · 850 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (23 loc) · 850 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>yin & yang</title>
<!-- cdn styling font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.0/css/all.min.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body class="container">
<div class="wrapper bg_white box__shadow_white">
<div class="cricle__white bg_white">
<div class="child__cricle_black bg_black"></div>
</div>
<div class="cricle__black bg_black">
<div class="child__cricle_white bg_white"></div>
</div>
</div>
<!-- cdn js font awesome -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.0/js/all.js"></script>
</body>
</html>