-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
32 lines (32 loc) · 1.3 KB
/
main.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="grid-container">
<svg class="svg" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
<path id="path1" stroke="#FFC0CB" stroke-width="0.5%" fill="none"></path>
<path id="path2" stroke="#03e3fc" stroke-width="0.5%" fill="none"></path>
<path id="path3" stroke="#d1043b" stroke-width="0.5%" fill="none"></path>
<path id="path4" stroke="#d16004" stroke-width="0.5%" fill="none"></path>
<path class="line" stroke="#f57802" stroke-width="0.5%" fill="none"></path>
</svg>
<div id="a1">1</div>
<div id="a2">2</div>
<div id="a3">3</div>
<div id="a4">4</div>
<div id="b1">a</div>
<div id="b2">b</div>
<div id="b3">c</div>
<div id="b4">d</div>
</main>
<button class="connect">connect</button>
<script src="code.js"></script>
</body>
</html>