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
| mkdir project | |
| touch index.html styles.css README.md | |
| read -p "Press [Enter] to continue..." | |
| echo "Congratulations" | |
| mkdir boilerP | |
| mv project boilerP/ | |
| open index.html |
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> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>index.html</title> | |
| </head> | |
| <body> | |
| <h1>Honey Badger</h1> | |
| <h3>AKA, The Bear Skunk (not really though)</h3> | |
| <article> |
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> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Star vs. the Forces of Evil</title> | |
| </head> | |
| <body> | |
| <nav> | |
| <ul> | |
| <a href="index.html">Home</a> |
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
| mkdir project | |
| touch index.html styles.css README.md | |
| read -p "Press [Enter] to continue..." | |
| echo "Congratulations" | |
| mkdir boilerP | |
| mv project boilerP/ | |
| open index.html |
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
| body { | |
| font-family: Helvetica,Arial,sans-serif; | |
| line-height: 1.6; | |
| background-image: url("./bg.jpg"); | |
| border: 2px solid yellow; | |
| border-radius: 5px; | |
| margin-top: 5px; | |
| margin-right: 100px; |
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
| * { | |
| box-sizing: border-box; | |
| } | |
| @font-face { | |
| font-family: Oleo Script; | |
| font-style: normal; | |
| font-weight: 400; | |
| src: local('Oleo Script'), url(http://fonts.gstatic.com/s/oleoscript/v5/_weQNDK6Uf40CiGFKBBUjogp9Q8gbYrhqGlRav_IXfk.woff2) format('woff2'); | |
| } | |
| @font-face { |
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
| *, *:before, *:after { | |
| box-sizing: border-box; | |
| } | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| border: 0; | |
| outline: 0; | |
| font-size: 100%; |
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
| public static String getUserName(Scanner borrowedInput) | |
| { | |
| // LOCAL VARIABLES | |
| String localUserName = ""; | |
| // FIRST NAME | |
| System.out.println("\nWhat is your first name?"); | |
| localUserName = borrowedInput.nextLine(); | |
| return localUserName; | |
| } // END - getUserName |
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
| /** AUTHOR : [ Andrew Jackson ] | |
| * COURSE : [ CPT 187 ] | |
| * PURPOSE : [ To calculate and generate a receipt for your purchase at SodNotZod.] | |
| * STARTDATE : [ 03/12/2020 ] **/ | |
| package edu.cpt187.jackson.project1; | |
| import java.util.Scanner; | |
| public class Metropolis { |
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
| /** AUTHOR : [ Andrew Jackson ] | |
| * COURSE : [ CPT 187 ] | |
| * PURPOSE : [ To calculate and generate a receipt for your purchase at SodNotZod.] | |
| * STARTDATE : [ 03/17/2020 ] **/ | |
| package edu.cpt187.jackson.participation2; | |
| import java.util.Scanner; | |
| public class SodNotZod { |
OlderNewer