-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (66 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Newton's Cradle</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<main>
<h1 class="title">Newton's Cradle</h1>
<div class="container">
<svg
xmlns="http://www.w3.org/2000/svg"
version="1.1"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 500 500"
>
<!-- Cradle -->
<rect
x="25%"
y="25%"
width="50%"
height="6"
fill="#bdc3c7"
rx="3"
class="cradle"
/>
<!-- Ball 1 -->
<g class="ball ball-1">
<line x1="30%" y1="25%" x2="30%" y2="50%" stroke="#bdc3c7" />
<circle cx="30%" cy="50%" r="5%" fill="#fff" />
</g>
<!-- Ball 2 -->
<g class="ball ball-2">
<line x1="40%" y1="25%" x2="40%" y2="50%" stroke="#bdc3c7" />
<circle cx="40%" cy="50%" r="5%" fill="#fff"></circle>
</g>
<!-- Ball 3 -->
<g class="ball ball-3">
<line x1="50%" y1="25%" x2="50%" y2="50%" stroke="#bdc3c7" />
<circle cx="50%" cy="50%" r="5%" fill="#fff"></circle>
</g>
<!-- Ball 4 -->
<g class="ball ball-4">
<line x1="60%" y1="25%" x2="60%" y2="50%" stroke="#bdc3c7" />
<circle cx="60%" cy="50%" r="5%" fill="#fff"></circle>
</g>
<!-- Ball 5 -->
<g class="ball ball-5">
<line x1="70%" y1="25%" x2="70%" y2="50%" stroke="#bdc3c7"></line>
<circle cx="70%" cy="50%" r="5%" fill="#fff"></circle>
</g>
</svg>
</div>
</main>
<footer>
Hi 👋 I am Ilknur. You can contact me via <a
href="https://www.linkedin.com/in/ilknur-%C3%BCltan%C4%B1r/"
target="_blank"
>LinkedIn</a
>. 💐
</footer>
</body>
</html>