Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

<h1> Lets create a collage </h1>

<p>The 13th student</p>


<svg width="1000" height="1000">

Expand Down Expand Up @@ -96,6 +98,9 @@ <h1> Lets create a collage </h1>
</rect>
<text x="230" y="360">Student 12 </text>





</svg>

Expand Down
110 changes: 110 additions & 0 deletions index.html~
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
<!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:#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>

<p>The 13th student</p>

</body>
</html>