diff --git a/README.md b/README.md index 60ccbf9..9163e6f 100644 --- a/README.md +++ b/README.md @@ -91,10 +91,36 @@ Sample Readme (delete the above when you're ready to submit, and modify the text Charlie Roberts http://a1-charlieroberts.glitch.me + +Andrei Ignatiev: +https://glitch.com/~a1-alignatiev + + + + This project shows ... ## Technical Achievements -- **Styled page with CSS**: Added rules for the p, li, and a selectors... +- **Styled page with CSS**: +Added rules for the p, li, table, and body selectors. + +Assigned colors, in accordance with the color palette that was created, to +each component. Adjusted the font size slightly for the list and paragraph +text. Elected to employ a double-border for the header. Mixed around serif and sans-serif fonts where it was deemed appropriate. + +- **New HTML Tags**: + +Experimented with new html tags. Expanded upon the list element that was already present in the project. Added a second list as well. Decided to put +my software working experience into a table, added some internal and in-line style sheets to it. Also integrated a jpeg image. + + ### Design Achievements -- **Used the Roboto Font from Google Fonts**: I used Roboto as the font for the primary copy text in my site. + +- **Color Pallette**: + +I created an analagous color pallette. I settled upon one set of colors, but then fiddled with the knob before I could manage a screenshot so all five colors that appear in the image may not match exactly with the hex-codes in the style sheets. It is a red-orange to pink to lavender to indigo to blue pallette. I use blue for the back-ground color, the red-orange for headers and list text, the lavender for plain text, the pink for a filler color inside of the table, and the indigo for in-table text. + +Link to color pallette: +https://docs.google.com/document/d/19JIt88SJX0k7J5u2RrLZnEEzPrYUQZ3B0pqRvbJOIYc/edit?usp=sharing + diff --git a/index.html b/index.html index 37ac8c3..93254af 100644 --- a/index.html +++ b/index.html @@ -3,26 +3,92 @@ CS4241 Assignment 1 + + -

Information about [Your name here]

+

Information about Andrei Ignatiev

+

- [Self introduction] + I am a junior. My email is: alignatiev@wpi.edu + My interest include playing soccer and hockey, reading, and doing various + things outside.

+ + + + + +
+ +
+

- [Major and other information] + Mathematical Sciences major, Computer Science minor

+

- [Other things] + Computer Science courses taken: Operating Systems, Computer Networks, Introduction to Programming, Object-Oriented Programming, + Machine Organization and Assembly Language

Experience

-

- Working experience -

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Working experience +
+ HTML - none +
+ CSS - none +
+ Java - a lot +
+ JavaScript - none +
+ Ruby - none +
+ Python - a lot +
+ unit testing - quite a bit +
+ diff --git a/mahobay.jpg b/mahobay.jpg new file mode 100644 index 0000000..485def1 Binary files /dev/null and b/mahobay.jpg differ diff --git a/package.json b/package.json index 1699a50..bd724e3 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "cr-4241-simple-glitch", "version": "0.1.0", "description": "WPI CS 4241 first assignment", - "author": "Charlie Roberts", + "author": "Charlie Roberts feat. Andrei Ignatiev", "scripts": { "start": "node server.js" } diff --git a/server.js b/server.js index b18d6a1..c723865 100644 --- a/server.js +++ b/server.js @@ -10,6 +10,9 @@ const server = http.createServer( function( request,response ) { case '/index.html': sendFile( response, 'index.html' ) break + case '/mahobay.jpg': + sendFile(response, 'mahobay.jpg') + break default: response.end( '404 Error: File Not Found' ) }