diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..9710e2b Binary files /dev/null and b/.DS_Store differ diff --git a/README.md b/README.md new file mode 100755 index 0000000..3b51373 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# My Awesome Project +Write a short sentence or two about this project and what it does. Be sure to include a link and a screenshot (we're front end devs so we can actually see our work!). + +**Link to project:** http://recruiters-love-seeing-live-demos.com/ + +![alt tag](http://placecorgi.com/1200/650) + +## How It's Made: + +**Tech used:** HTML, CSS, JavaScript, Framework of choice + +Here's where you can go to town on how you actually built this thing. Write as much as you can here, it's totally fine if it's not too much just make sure you write *something*. If you don't have too much experience on your resume working on the front end that's totally fine. This is where you can really show off your passion and make up for that ten fold. + +## Optimizations +*(optional)* + +You don't have to include this section but interviewers *love* that you can not only deliver a final product that looks great but also functions efficiently. Did you write something then refactor it later and the result was 5x faster than the original implementation? Did you cache your assets? Things that you write in this section are **GREAT** to bring up in interviews and you can use this section as reference when studying for technical interviews! + +## Lessons Learned: + +No matter what your experience level, being an engineer means continuously learning. Every time you build something you always have those *whoa this is awesome* or *fuck yeah I did it!* moments. This is where you should share those moments! Recruiters and interviewers love to see that you're self-aware and passionate about growing. + +## Examples: +Take a look at these couple examples that I have in my own portfolio: + +**Palettable:** https://github.com/alecortega/palettable + +**Twitter Battle:** https://github.com/alecortega/twitter-battle + +**Patch Panel:** https://github.com/alecortega/patch-panel + + + diff --git a/img/.DS_Store b/img/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/img/.DS_Store differ diff --git a/img/nyc.jpeg b/img/nyc.jpeg new file mode 100644 index 0000000..0f3ea1b Binary files /dev/null and b/img/nyc.jpeg differ diff --git a/img/nyc.jpg b/img/nyc.jpg new file mode 100644 index 0000000..6f78065 Binary files /dev/null and b/img/nyc.jpg differ diff --git a/img/paris.jpg b/img/paris.jpg new file mode 100644 index 0000000..a8451e7 Binary files /dev/null and b/img/paris.jpg differ diff --git a/index.html b/index.html new file mode 100755 index 0000000..a040743 --- /dev/null +++ b/index.html @@ -0,0 +1,55 @@ + + + + + Food Blog + + + + +
+

The Foodist

+

Food blog

+ +
+
+

11/12/13

+

Food of NYC

+ +

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc porttitor justo nulla, a volutpat eros luctus a. Duis varius diam dolor, sed feugiat eros suscipit vel. Fusce feugiat ut mi nec mollis. Praesent tristique, nibh eget eleifend sollicitudin, erat enim vulputate nisl, a porttitor ipsum turpis in nisi. Duis sit amet magna in erat porta eleifend. Nullam ante leo, dictum quis ornare a, dignissim a libero. Integer dictum mauris a neque vehicula tristique. Cras nec tortor non tortor gravida vestibulum

+

Next

+
+
+

11/11/13

+

Food of Paris

+ +

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc porttitor justo nulla, a volutpat eros luctus a. Duis varius diam dolor, sed feugiat eros suscipit vel. Fusce feugiat ut mi nec mollis. Praesent tristique, nibh eget eleifend sollicitudin, erat enim vulputate nisl, a porttitor ipsum turpis in nisi. Duis sit amet magna in erat porta eleifend. Nullam ante leo, dictum quis ornare a, dignissim a libero. Integer dictum mauris a neque vehicula tristique. Cras nec tortor non tortor gravida vestibulum

+

Next

+
+ + + \ No newline at end of file diff --git a/main.css b/main.css new file mode 100755 index 0000000..39228fe --- /dev/null +++ b/main.css @@ -0,0 +1,59 @@ +header a{/*The Foodist */ + color: red; + font-size: 50px; + font-weight:normal; +} +header h2{/*Food of NYC*/ + color: black; + font-weight: normal; +} +body{/*Used this to change all font of the body into lato*/ + font-family: 'lato',sans-serif; +} +nav a{ /*The Different Cities*/ + color:rgba(192,192,192, 0.5); + font-size: 25px; + padding: 10px; +} +article{ + width: 75%; + border-bottom: 1px solid; + border-bottom-color: rgba(0,0,0,0.5); + font-weight: normal; + margin-bottom: 40px; + padding-bottom: 40px; +} +img{/*Scaling for both images*/ + width: 100%; +} +article h3{ + color:rgba(192,192,192, 0.5); + font-weight: normal; + font-size: 35px; + } + article a{ + color: black; + font-weight: normal; + font-size: 38px; +} +h4 > a{ + color:red; + float: right; + font-weight: bold; + font-size: 20px; +} +article p::first-letter{ + font-size: 600%; + float: left; + color: rgba(192, 192, 192, 0.5); +} +a{ + text-decoration: none; +} +footer{ + color: rgba(192, 192, 192, 0.5); +} +footer nav a{ + color: red; + padding:10px; +}