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
670 changes: 668 additions & 2 deletions package-lock.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,7 +1,2 @@
<div class="answer">My name is ...</div>
<p style= 'color: red;'>My name is <b>Revelation<b></p>

<style>
div.answer {
color: rgb(2, 96, 45);
}
</style>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<h5>Header 5</h5>
<h6>Header 6</h6>


Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<p><em> "The best visual ordered by Mackinlay's ranking:"</em></p>
<ol>
<li>position</li>
<li>length</li>
<li>angle</li>
</ol>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Marks are basic geometric elements that depict items and links.
<li><em>Marks</em> are <strike>basic</strike> <b>geometric elements</b> that depict items and links.</li>
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
The first message! The second message!
<div>
The first message!
</div>
<div>
The second message!
</div>
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
I really like data visualisation!
<style>
p{color:steelblue; font-size:26px; font-family: Arial}

</style>
<p>I <span style="color:red;">really</span> like data visualisation!</p>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
My lucky number is
const My lucky number is = 26
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<script>
const myFavorites = {
name: "Revelation",
favorites: ["apple", "peer", "sex"]
};
</script>

<p>My name is {myFavorites.name} and these are some of my favourite things: {myFavorites.favorites.join(", ")}.</p>
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<script>
function circum_sphere(radius){
const circumference=2*Math.PI*radius;
return circumference
}

const radius = 5;
const circumference =circum_sphere(radius);
</script>
<p>'The circumference of a circle with radius {radius}m is {circumference.toFixed(2)}m.'</p>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<div>
<Exercise_03/>
<Exercise_03/>
</div>

<script>
import Exercise_03 from './Exercise_03.svelte';
import Exercise_02from './Exercise_02.svelte';
</script>