forked from deebuls/learning_github_mas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (68 loc) · 2.33 KB
/
index.html
File metadata and controls
106 lines (68 loc) · 2.33 KB
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
<!DOCTYPE html>
<html>
<body>
<h1> Lets create a collage </h1>
<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:red">
</rect>
<text x="30" y="60">Tim </text>
<!--Code to be eddited by student 2 start-->
<rect x="10" y="110" height="100" width="100"
style = "stroke:#f11000; fill:#ff0000">
</rect>
<text x="30" y="160">Roberto </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:white; fill:yellow">
</rect>
<text x="30" y="360">Kiran</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:#ff0000">
</rect>
<text x="130" y="260">Octavio >:D </text>
<!--Code to be eddited by student 8 start-->
<rect x="110" y="310" height="100" width="100"
style = "stroke:#f11000; fill:#00FF00">
</rect>
<text x="130" y="360">8 - Khaled </text>
<!--Code to be eddited by student 9 start-->
<rect x="210" y="10" height="100" width="100"
style = "stroke:#ff0000; fill:#ea11ff">
</rect>
<text x="230" y="60">Hashem </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:#00ffff">
</rect>
<text x="230" y="260">chaitanya </text>
<!--Code to be eddited by student 12 start-->
<rect x="210" y="310" height="100" width="100"
style = "stroke:#f11000; fill:#00ff00">
</rect>
<text x="230" y="360">Anand</text>
</svg>
</body>
</html>