forked from deebuls/learning_github_mas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (69 loc) · 2.38 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<body>
<h1> Lets create a collage </h1>
<p>The 13th student</p>
<svg width="1000" height="1000">
<!--Code to be eddited by student 1 start-->
<rect x="10" y="10" height="100" width="100"
style = "stroke:#ff0000; fill:#0000ff">
</rect>
<text x="30" y="60">Student 1 </text>
<!--Code to be eddited by student 2 start-->
<rect x="10" y="110" height="100" width="100"
style = "stroke:#f11000; fill:#0001ff">
</rect>
<text x="30" y="160">Student 2 </text>
<!--Code to be eddited by student 3 start-->
<rect x="10" y="210" height="100" width="100"
style = "stroke:#ff0000; fill:#0000ff">
</rect>
<text x="30" y="260">Student 3 </text>
<!--Code to be eddited by student 4 start-->
<rect x="10" y="310" height="100" width="100"
style = "stroke:#f11000; fill:#0001ff">
</rect>
<text x="30" y="360">Student 4 </text>
<!--Code to be eddited by student 5 start-->
<rect x="110" y="10" height="100" width="100"
style = "stroke:#ff0000; fill:#0000ff">
</rect>
<text x="130" y="60">Student 5 </text>
<!--Code to be eddited by student 6 start-->
<rect x="110" y="110" height="100" width="100"
style = "stroke:#f11000; fill:#0001ff">
</rect>
<text x="130" y="160">Student 6 </text>
<!--Code to be eddited by student 7 start-->
<rect x="110" y="210" height="100" width="100"
style = "stroke:#ff0000; fill:#0000ff">
</rect>
<text x="130" y="260">Student 7 </text>
<!--Code to be eddited by student 8 start-->
<rect x="110" y="310" height="100" width="100"
style = "stroke:#f11000; fill:#0001ff">
</rect>
<text x="130" y="360">Student 8 </text>
<!--Code to be eddited by student 9 start-->
<rect x="210" y="10" height="100" width="100"
style = "stroke:#ff0000; fill:#0000ff">
</rect>
<text x="230" y="60">Student 9 </text>
<!--Code to be eddited by student 10 start-->
<rect x="210" y="110" height="100" width="100"
style = "stroke:#f11000; fill:#0001ff">
</rect>
<text x="230" y="160">Student 10 </text>
<!--Code to be eddited by student 11 start-->
<rect x="210" y="210" height="100" width="100"
style = "stroke:#ff0000; fill:#0000ff">
</rect>
<text x="230" y="260">Student 11 </text>
<!--Code to be eddited by student 12 start-->
<rect x="210" y="310" height="100" width="100"
style = "stroke:#f11000; fill:#0001ff">
</rect>
<text x="230" y="360">Student 12 </text>
</svg>
</body>
</html>