-
Notifications
You must be signed in to change notification settings - Fork 20
Scavenger hunt work #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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"> | ||
| <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> | ||
| 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> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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"> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should be |
||
| <img src=""> | ||
| </body> | ||
| </html> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| var string = "HelloWorld!"; | ||
|
|
||
| console.log(string.length); |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| .image { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not |
||
| height: 50px; | ||
| width: 50px; | ||
| } | ||
| #div1 { | ||
| height: 200px; | ||
| width: 200px; | ||
| } | ||
| 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); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice! |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice use of classes!