Created
December 16, 2016 22:19
-
-
Save javaeeeee/9ab9cdb1a08dee2e071a40edcbdcdb8b to your computer and use it in GitHub Desktop.
A snippet of HTML code used to create a Hello World AngularJS application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Hello World AngularJS application</title> | |
| </head> | |
| <body> | |
| <h1>Hello World AngularJS application</h1> | |
| <section> | |
| <h4>AngularJS Greeting</h4> | |
| <label for="name">Type your name here:</label> | |
| <input id=name type="text"> | |
| <p>Hello !</p> | |
| </section> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment