- screenshots of scores will be posted in comments
- screenshots of completed sections will be posted in comments
#Howdy Bloc | |
#####How's it going? Things are pretty good over here. Up kinda late, cuz I'm still *jetlagged*. I'll get over it soon :) | |
######My favorite travel food blog is probably Legal Nomads by Jodi Ettenburg. I met her in Portland--she is awesome. [http://www.legalnomads.com] | |
######Hmm, let's make a list. Gonna choose an acronym that is on a checklist prior to landing: it's called CGUMPS | |
1) Carb Heat | |
2) Fuel Selector (*gas--important!*) |
num = gets.chomp | |
splits = num.split(//) | |
card_number = [] | |
card_number << splits[-2] | |
card_number << splits[-4] |
###HTML Skeleton Consists of the set of tags required for an HTML file.
-- declaration of the type of HTML (e.g. HTML5)< html > --root element of an HTML page < head > contains meta tags of the document. Not visible to user < /head >
< body > where visible content lives. This is viewable to the user/displayed on a browser < /body > < /html > --closes the document