Intro to Web Development Links
Desktop Setup: Atom & Chrome (split screen)
Step 1: Visit ScottsDevelopers.com | HTML
Step 2: Get HTML5 Simple Template
Step 2: Get HTML5 Simple Template
Step 3: View Source Code In Chrome, ctrl-u ( )
Step 4: Copy Source Code In Chrome, ctrl-a, ctrl-c ( , )
Step 5: Startup Atom (Close any open panels)
Step 6: Create New File File > New
Step 7: Paste Text into Atom ctrl-v ( )
Step 8: Save to Desktop File > Save As With webpage name home.html
Step 9: Modify HTML Change web page title and page content: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title> Your Title Here </title> </head> <body> Your message here! </body> </html>
Step 9: Modify HTML
Step 10: Save and Test ctrl-s ( ) In Chrome:
Don't Close the File in Atom!
Step 11: Modify HTML
Step 10: Save As tuition.html (different file!) In Chrome:
Goal: "Link" between two Web Pages:
Clicking on something on a web page takes you to a different page! Hyperlinking: Clicking on something on a web page takes you to a different page!
Clicking on something on a web page takes you to a different page! Hyperlinking: Clicking on something on a web page takes you to a different page! Click Here
Hyperlinking: Click Here
Hyperlinking: Click Here
Hyperlinking: Hyperlink
Code
Two New HTML Elements
<a> is the "hyperlink" tag Two New HTML Elements <a> is the "hyperlink" tag
<a> is the "hyperlink" tag (used to be the "anchor" tag) Two New HTML Elements <a> is the "hyperlink" tag (used to be the "anchor" tag)
<a> Element <href> is the "hyperlink reference" attribute of the <a> tag
Add hyperlinks to both pages home.html tuition.html
Test
Hyperlinks
Hyperlinks
HyperText (links)
HyperText (links) Markup (tags)
HyperText (links) Markup (tags) Language