In order to create this page, you need to go way back in your phone history–– seriously, we’re talking those first photos, because this is a game of eye spy.
Based on your preference below, you will find 40 photos in your camera roll in accordance to the colors you’ve been assigned, 80 total, 40 per color. The color needs to be the most prominent in the image (it’s okay if not the entire image)/
Congrats, you’re feed is about to get a lot more colorful. Please go out and find, search for, or phone a friend to fill your web content with the colors that you were given.
I highly recommend taking this time to grab a bite to eat, see some new spots of the city, and make some colorful choices :)
Poem: The Answer Baseness is a passport for the base, Honour an epitaph for the honourable. See how the gilded sky teems With the twisted shadows of the dead. The ice age is over, So why does ice still bind the world? The Cape of Good Hope has been discovered, So why is the Dead Sea still thick with sails? I come into this world Carrying only paper, rope and a shadow, To proclaim before judgment is passed This plea of the judged: Listen to me, world, I ! do ! not ! believe! If a thousand challengers lie beneath your feet Then I am number one thousand and one. I do not believe the sky is blue; I do not believe the thunder’s roar; I do not believe that dreams are false; I do not believe that death has no revenge. If the ocean is destined to break the dike; Then let its bitter water pour into my soul; If the land is destined to rise, Then let mankind choose a new mountain for survival. The vast unobstructed firmament Is it with glimmering stars; They are a new turning: These hieroglyphs of the ages, These staring eyes of the future.
image: https://fsa.zobj.net/crop.php?r=gjgRmFvG- UL4jDeyYluFfNZxGc4NFtzUgEJFJ2_QmSTVjFdcdk- FwFgsYIflH_3ik-7n8vVKACBPthZEUERBLJO1x0PN6taG87mMCDmE1k9QsnReb55lkRJwPnTx d45OgvF_NwGtLxQEg3Gx
Directions to Code Mondrian Painting
Step 1: Background
- Go into CSS tab - Erase anything that is already there - Set body and html styles to have wall-like background color (ex: #f6f6f6)
Ex of what my CSS code looks like: body, html {
background-color: #f6f6f6; } Step 2: Canvas
- Make a big box (AKA: this is the canvas) - To make painting I used #id and <div> - In CSS panel make a new #id for your big box. You can call your ID whatever you like, but you
need to add an # in front of it. (I called mine #painting) - Set the Height and Width for your box. You can choose your own number but it should be big
enough to divide into quarters and thirds, etc. (I made mine 400px) - Set background to white (#fff4db) - Add positioning (centered on background with space from the top.) To do that you can set left
and right margins to auto and margin-top to 30px - Add a box-shadow to #painting style for it to stand out from wall
Ex of what my CSS code looks like: #painting { background-color: #fff4db;
width: 400px; height: 400px; marging-top: 30px; margin-right: auto; box-shadow: 10px 10px 0px #8d8d8d; }
- Switch back to HTML tab and inbetween the <body> tags add a new <div> tag. Give it the #id
style you just created. (ex: id="painting" inside the opening tag.)
Ex of what my CSS code looks like: <body>
<div id-”painting”></div> </body>
Step 3: Positioning and dividing boxes with DIVs and CSS
- The rows, columns and boxes will each have their own CSS #id and one or more HTML <div>s Starting with the top row, the big box on the right and two smaller on the left
- Go into CSS tab and define new #id for top row - Since the #painting size is 400px, the top row should have height of 290px
Ex of what my CSS code looks like: #toprow { Height: 290px; }
- Now add a new <div> in between the tags of the big painting in the HTML page. (this one won’t
be visible)
Ex of what my CSS code looks like: <body>
<div id="painting">
<div id="toprow"></div> </div> </body>
Step 4: Big box
- Create new #id for big red box and set width and height of 290px - Add corresponding <div> to HTML within the #toprow <div> you previously made. You will
add color after.
Ex of what my HTML code looks like: <body>
<div id="painting">
<div id="toprow"></div> </div> </div> </body>
Ex of what my CSS code looks like: #bigbox { Width: 290px; Height: 290px; } Step 5: Color
- In CSS tab, start a new line - Write you first color class (looks like the other styles you types so far except instead of “#” in
front of the selector you put a “.” (period) Try the color “red” as the background color.
Ex of what my CSS code looks like: .red {
Background-color: red; }
- To Apply the .red class to our #bigbox DIV, add the text class=”red” to its tag in HTML
Ex of what my CSS code looks like: <body>
<div id= “painting”> <div id= “toprow”> <div id= “bigbox” class= “red”></div> </div> </div> </body>
- Now make classes for other colors in this painting: .blue, .yellow, and .black.
Ex of what my CSS code looks like: .red {
Background-color: red; } .blue {
Background-color: blue; } .yellow { Background-color: yellow; } .black {
Background-color: black; } Step 6: Position elements
- Make a class called .right and use it to float the bigbox DIV to the right
Ex of what my CSS code looks like: .right {
Float: right; } Ex of what my HTML code looks like: <div id=”bigbox” class=”red right”</div>
Step 6: Dividers
- Make a new #id for the top divider and assign a color and position class to it in HTML - Make the divider 10px wide and 290px tall
Ex of what my CSS code looks like: #divider1 { Height: 290px;
Width: 10px; } Ex of what my HTML code looks like: <body>
<div id="painting">
<div id="toprow">
<div id=”bigbox” class=”red right”></div> <div id=”divider1” class=”black right”></div>
</div> </div> </div> </body>
Step 8: Columns
- Make a new #topleftcolumn tag, a .mediumbox class and a horizontal #divider2 in between. - The #topleftcolums won’t be visible
Ex of what my HTML code looks like: <body>
<div id="painting">
<div id="toprow">
<div id=”bigbox” class=”red right”></div> <div id=”divider1” class=”black right”></div> <div id= “topleftcolumn” class= “right”> <div class= “mediumbox”></div> <div id="divider2" class= "black"></div>
<div class="mediumbox"></div>
</div> </div> </div> </body>
Ex of what my CSS code looks like: .mediumbox {
Width: 100px; Height: 140px; } #divider2 { Height: 10px; Width: 100px; }
Step 9: middle row divider
- Make a .middlerow class and add it to HTML code
Ex of what my CSS code looks like: .middlerow {
Width: 100px; Height: 140px; } Ex of what my HTML code looks like: <body>
<div id="painting">
<div id="toprow">
<div id=”bigbox” class=”red right”></div> <div id=”divider1” class=”black right”></div> <div id= “topleftcolumn” class= “right”> <div class= “mediumbox”></div> <div id="divider2" class= "black"></div>
<div class="mediumbox"></div>
</div> </div> <div id= “middlerow”></div> </div> </body>
- Now fill out the bottom row - Repeat the process the same way as the top row you completed with different size and colors if
you wish.