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
26 changes: 25 additions & 1 deletion solutions/01_hello_html/hello.html
Original file line number Diff line number Diff line change
@@ -1 +1,25 @@
This is just an example! Hehe.
<!DOCTYPE>
<html>
<head>
<title></title>
<script src="hello.js"></script>
<link href="hello.css" rel="stylesheet">
<title>Hello!</title>
</head>
<body>
<h1>Hello, World!</h1>
<p>World!</p>

<img class="img" src="http://gematsu.com/wp-content/uploads/2014/12/SAOLS-PV2.jpg">
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice use of classes!

<p>SAO</p>
<img class="img" src="http://gematsu.com/wp-content/uploads/2014/12/SAOLS-PV2.jpg">
<p>SAO</p>

<div id="image">
<img class="img"src="https://store.playstation.com/store/api/chihiro/00_09_000/container/US/en/999/UP0700-CUSA02823_00-SAOLOSTSONG00000/1443551078000/image?_version=00_09_000&platform=chihiro&w=225&h=225&bg_color=000000&opacity=100">
</div>
<div id="text">
<p>Text</p>
</div>
</body>
</html>
15 changes: 15 additions & 0 deletions solutions/09A_length/Index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE>
<html>
<head>
<title></title>
<script src="scavengerHunt.js"></script>
<title>Hello!</title>
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

whoops, two titles ? 😛

</head>
<body>
<h1>Hello, World!</h1>
<p>World!</p>

<img class = "img" src="http://cdn.idigitaltimes.com/sites/idigitaltimes.com/files/2015/05/27/sword-art-online-lost-song.jpg">
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should be class="img" (without the spaces before/after the =)

<img src="">
</body>
</html>
3 changes: 3 additions & 0 deletions solutions/09A_length/length.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
var string = "HelloWorld!";

console.log(string.length);
8 changes: 8 additions & 0 deletions solutions/ScavengerHunt/hello.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.image {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not .img?

height: 50px;
width: 50px;
}
#div1 {
height: 200px;
width: 200px;
}
4 changes: 4 additions & 0 deletions solutions/ScavengerHunt/hello.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
console.log("Hello World!");

var yourName = prompt("What is your name?");
console.log(yourName);
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice!