JS Homework : Name Picker
- make a new directory for this project
- make three files ->
index.htmlmain.jsstyle.css - Build the html basics (head, body)
- link up the css and js files to the <head> section in your html.
| { | |
| app:{ | |
| version: "0.1.0", | |
| state:{ | |
| currentRoute: "/search", | |
| qs: "blah=derp" | |
| // or | |
| qs:{ | |
| blah:"derp" | |
| } |
index.html main.js style.css| .body{ | |
| width: 400px; | |
| height: 400px; | |
| } | |
| .triangle { | |
| position: relative; | |
| margin: 0 auto; | |
| width: 20px; | |
| height:20px; | |
| } |