Chat with us, powered by LiveChat first job ?Objectives Set up an HTML page using the basic page elements. Be able to use HTML5 semantic elements to structure - Writeedu

first job ?Objectives Set up an HTML page using the basic page elements. Be able to use HTML5 semantic elements to structure

first job

 Objectives
• Set up an HTML page using the basic page elements.
• Be able to use HTML5 semantic elements to structure a web page.
• Properly use images, lists, headings and semantic elements.
• Successfully use CSS to style and modify the appearance of page and the elements
contained within.
Basic Requirements
• Properly use and indent all tags.
• Set up page with <html>, <head> and <body> tags.
Assignment Details
Using the skills you have gained in this course, create a homepage for yourself. This
homepage will be a space for you to talk about yourself, your education, work
experience and goals. Include:
• Name
• Degree
• Skills
• Picture
• Work experience (1 or 2 is fine)
Submit your assignment
1. Combine all work files into a zip folder (include all HTML, CSS, font, and image files).
Keep the file structure the same as it was when you were working on the
assignment.
2. Submit the zip folder via desire2learn in the appropriate Assignment folder in order
to receive credit. While you may also submit screenshots, you are required to
submit the actual code files, not just screenshots of the code. 

second job project

 Objectives
• Comprehensive review of the HTML, CSS and Javascript skills learned this semester.
Basic Requirements
• Properly use and indent all tags.
• Set up page with <html>, <head> and <body> tags.
• The page should contain your name in the <footer>.
Project Description
• Using the skills you have gained this semester, recreate 2 – 3 pages of a website of
your choice.
• All HTML and CSS should be built from the ground up. You may (and should) use
images that you find on the site for your project.
• In addition to HTML and CSS, you will be adding some basic Javascript functionality
of your choosing to the site.
Submitting your project
• There are 3 stages of this project:
1. Pick the site (and the 2 – 3 pages you will be building)
• Submit the URL along with screenshots to D2L
2. HTML and CSS
3. Javascript
• Sections 2 & 3 are both due the final week of the semester.
• Save all work to a zip folder and submit to D2L. In addition to the
completed work files, please include screenshots of the final
result ad well 

__MACOSX/._ResponsiveCss

ResponsiveCss/index.html

NEIU CS300 HTML & CSS Responsive Design

Block One – Always Full Width

The contents of this block whill always be full width, regardless of the screen resolution or the size of your device.

Responsive Design – The Basics

Responsive design tends to use a 12 column grid. This is used by frameworks such as Bootstrap, Foundation, etc. The grid system allows us to easily adjust an elements width depending on browser size / device resolution.

How it works

  • Create an element and give it class="row"
  • Within each row, add columns until you total 12 (See examples below). Each element should be given a width. Column class names tend to have 3 parts:
    1. col
    2. size (xs, sm, md, lg, xl)
    3. # of columns (1, 2, 3,..11,12)
    4. Example: class="col-sm-1"
  • Create @media rules for various screen sizes and resolutions. When your browser or device falls within that range, any styles/rules for a specific element listed within the @media rule will override rules for that element listed outside of the @media rule
  • If a rule is outside of an @media rule and is not overridden by a specific rule within an @media rule, it will always apply, regardless of screen size / resolution
  • Depending on the width of your browser / screen resolution, the styles will change

Block Two – Grid

12 Col 1 Col 11 Col 2 Col 10 Col 3 Col 9 Col 4 Col 8 Col 5 Col 7 Col 6 Col 6 Col

Block Three – Grid

Box 1 Box 2 Box 3 Box 4 Box 5 Box 6 Box 7 Box 8

Block Four – Grid

Name Email Comments Northeastern Illinois University – CS300 © Copyright 2018

__MACOSX/ResponsiveCss/._index.html

ResponsiveCss/.DS_Store

__MACOSX/ResponsiveCss/._.DS_Store

ResponsiveCss/css/styles.css

body{ float: left; width: 100%; padding: 0; margin: 0; font-family: GeometriaMedium, calibri, arial, sans-serif; } header{ float: left; width: 96%; height: 75px; padding: 20px 2%; border-bottom: 2px solid black; background: #f7f7f7; z-index: 5; color: #2c3e50; } header .left{ font-size: 36px; } header .right{ font-size: 18px; } .left{ float: left; width: 35%; } .right{ float: right; width: 60%; text-align: right; } .big{ font-weight: 900; text-transform: uppercase; font-family: GeometriaHeavy; } .small{ font-weight: 400; text-transform: lowercase; color: #f1c40f; font-family: GeometriaBold } #container{ float: left; width: 100%; } article{ float: left; width: 90%; padding: 100px 5% 0 5%; height: auto; margin: 0 auto; } h2{ float: left; clear: both; width: 100%; color: #34495e; font-size: 32px; } footer{ float: left; width: 100%; padding: 20px 0; margin-top: 30px; border-top: 5px double black; } .ftrLeft{ padding-left: 2%; } .ftrRight{ padding-right: 2%; } section p{ font-size: 18px; } /* Form Elements */ label{ width: 25%; padding-right: 3%; float: left; font-size: 24px; color: #2c3e50; } input{ float: left; border: 2px solid #34495e; width: 100%; padding: 5px; font-size: 18px; } textarea{ float: left; border: 2px solid #34495e; width: 100%; height: 100px; padding: 5px; font-size: 18px; } .row{ float: left; width: 100%; margin: 10px auto; } .btnRow{ margin-top: 20px; } .btn{ height: 50px; width: 80%; margin: 0 10%; border: 1px solid #2c3e50; } .btn-primary{ background: #2c3e50; color: #f1c40f; } .btn:hover{ background: #bdc3c7; color: #2c3e50; } .btn-default{ background: #FFFFFF; color: #2c3e50; } /* Boxes */ .box{ width: 100%; color: #f1c40f; background: #2c3e50; font-size: 1.5em; text-align: center; font-family: GeometriaHeavy; } .box:hover{ color: #2c3e50; background: #f1c40f; } .shortBox{ height: 50px; line-height: 50px; } .tallBox{ height: 200px; line-height: 200px; } /* Grid */ .row{ width: 100%; margin: 0; float: left; } .col{ float: left; margin: 10px 1%; } /*@media (min-width: 1000px){*/ .col-lg-1{ width: 6.33%; } .col-lg-2{ width: 14.66%; } .col-lg-3{ width: 23%; } .col-lg-4{ width: 31.33%; } .col-lg-5{ width: 39.66%; } .col-lg-6{ width: 48%; } .col-lg-7{ width: 56.33%; } .col-lg-8{ width: 64.66%; } .col-lg-9{ width: 73%; } .col-lg-10{ width: 81.33%; } .col-lg-11{ width: 89.66%; } .col-lg-12{ width: 98%; } /*}*/ /* @media (min-width: 500px) and (max-width: 999px){ .col-md-1{ width: 6.33%; } .col-md-2{ width: 14.66%; } .col-md-3{ width: 23%; } .col-md-4{ width: 31.33%; } .col-md-5{ width: 39.66%; } .col-md-6{ width: 48%; } .col-md-7{ width: 56.33%; } .col-md-8{ width: 64.66%; } .col-md-9{ width: 73%; } .col-md-10{ width: 81.33%; } .col-md-11{ width: 89.66%; } .col-md-12{ width: 98%; } } */ /* @media (max-width: 499px){ .col-sm-1{ width: 6.33%; } .col-sm-2{ width: 14.66%; } .col-sm-3{ width: 23%; } .col-sm-4{ width: 31.33%; } .col-sm-5{ width: 39.66%; } .col-sm-6{ width: 48%; } .col-sm-7{ width: 56.33%; } .col-sm-8{ width: 64.66%; } .col-sm-9{ width: 73%; } .col-sm-10{ width: 81.33%; } .col-sm-11{ width: 89.66%; } .col-sm-12{ width: 98%; } } */ /* Colors */ /* translucent red –> rgba(231,76,60 ,.3) midnight blue –> #2c3e50 silver –> #bdc3c7 sunflower –> #f1c40f emerland –> #2ecc71 wisteria –> #8e44ad wetasphalt –> #34495e */

ResponsiveCss/css/fonts.css

@font-face{ font-family: GeometriaBold; src: url(../fonts/Geometria-Bold.ttf); } @font-face{ font-family: GeometriaLight; src: url(../fonts/Geometria-Light.ttf); } @font-face{ font-family: GeometriaHeavy; src: url(../fonts/Geometria-Heavy.ttf); } @font-face{ font-family: GeometriaThin; src: url(../fonts/Geometria-Thin.ttf); } @font-face{ font-family: GeometriaMedium; src: url(../fonts/Geometria-Medium.ttf); }

__MACOSX/ResponsiveCss/css/._fonts.css

ResponsiveCss/images/favicon.ico

__MACOSX/ResponsiveCss/images/._favicon.ico

ResponsiveCss/images/smile.gif

__MACOSX/ResponsiveCss/images/._smile.gif

ResponsiveCss/fonts/Geometria-LightItalic.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-LightItalic.ttf

ResponsiveCss/fonts/Geometria-HeavyItalic.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-HeavyItalic.ttf

ResponsiveCss/fonts/Geometria-ExtraBold.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-ExtraBold.ttf

ResponsiveCss/fonts/Geometria.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria.ttf

ResponsiveCss/fonts/Geometria-MediumItalic.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-MediumItalic.ttf

ResponsiveCss/fonts/Geometria-ExtraLight.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-ExtraLight.ttf

ResponsiveCss/fonts/Geometria-ThinItalic.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-ThinItalic.ttf

ResponsiveCss/fonts/Geometria-BoldItalic.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-BoldItalic.ttf

ResponsiveCss/fonts/Geometria-Medium.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-Medium.ttf

ResponsiveCss/fonts/Geometria-Heavy.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-Heavy.ttf

ResponsiveCss/fonts/Geometria-Italic.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-Italic.ttf

ResponsiveCss/fonts/Geometria-ExtraLightItalic.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-ExtraLightItalic.ttf

ResponsiveCss/fonts/Geometria-ExtraBoldItalic.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-ExtraBoldItalic.ttf

ResponsiveCss/fonts/Geometria-Bold.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-Bold.ttf

ResponsiveCss/fonts/Geometria-Light.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-Light.ttf

ResponsiveCss/fonts/Geometria-Thin.ttf

__MACOSX/ResponsiveCss/fonts/._Geometria-Thin.ttf

,

ResponsiveCss/css/fonts.css

@font-face{ font-family: GeometriaBold; src: url(../fonts/Geometria-Bold.ttf); } @font-face{ font-family: GeometriaLight; src: url(../fonts/Geometria-Light.ttf); } @font-face{ font-family: GeometriaHeavy; src: url(../fonts/Geometria-Heavy.ttf); } @font-face{ font-family: GeometriaThin; src: url(../fonts/Geometria-Thin.ttf); } @font-face{ font-family: GeometriaMedium; src: url(../fonts/Geometria-Medium.ttf); }

ResponsiveCss/css/styles.css

body{ float: left; width: 100%; padding: 0; margin: 0; font-family: GeometriaMedium, calibri, arial, sans-serif; } header{ float: left; width: 96%; height: 75px; padding: 20px 2%; border-bottom: 2px solid black; background: #f7f7f7; z-index: 5; color: #2c3e50; } header .left{ font-size: 36px; } header .right{ font-size: 18px; } .left{ float: left; width: 35%; } .right{ float: right; width: 60%; text-align: right; } .big{ font-weight: 900; text-transform: uppercase; font-family: GeometriaHeavy; } .small{ font-weight: 400; text-transform: lowercase; color: #f1c40f; font-family: GeometriaBold } #container{ float: left; width: 100%; } article{ float: left; width: 90%; padding: 100px 5% 0 5%; height: auto; margin: 0 auto; } h2{ float: left; clear: both; width: 100%; color: #34495e; font-size: 32px; } footer{ float: left; width: 100%; padding: 20px 0; margin-top: 30px; border-top: 5px double black; } .ftrLeft{ padding-left: 2%; } .ftrRight{ padding-right: 2%; } section p{ font-size: 18px; } /* Form Elements */ label{ width: 25%; padding-right: 3%; float: left; font-size: 24px; color: #2c3e50; } input{ float: left; border: 2px solid #34495e; width: 100%; padding: 5px; font-size: 18px; } textarea{ float: left; border: 2px solid #34495e; width: 100%; height: 100px; padding: 5px; font-size: 18px; } .row{ float: left; width: 100%; margin: 10px auto; } .btnRow{ margin-top: 20px; } .btn{ height: 50px; width: 80%; margin: 0 10%; border: 1px solid #2c3e50; } .btn-primary{ background: #2c3e50; color: #f1c40f; } .btn:hover{ background: #bdc3c7; color: #2c3e50; } .btn-default{ background: #FFFFFF; color: #2c3e50; } /* Boxes */ .box{ width: 100%; color: #f1c40f; background: #2c3e50; font-size: 1.5em; text-align: center; font-family: GeometriaHeavy; } .box:hover{ color: #2c3e50; background: #f1c40f; } .shortBox{ height: 50px; line-height: 50px; } .tallBox{ height: 200px; line-height: 200px; } /* Grid */ .row{ width: 100%; margin: 0; float: left; } .col{ float: left; margin: 10px 1%; } @media (min-width: 1000px){ .col-lg-1{ width: 6.33%; } .col-lg-2{ width: 14.66%; } .col-lg-3{ width: 23%; } .col-lg-4{ width: 31.33%; } .col-lg-5{ width: 39.66%; } .col-lg-6{ width: 48%; } .col-lg-7{ width: 56.33%; } .col-lg-8{ width: 64.66%; } .col-lg-9{ width: 73%; } .col-lg-10{ width: 81.33%; } .col-lg-11{ width: 89.66%; } .col-lg-12{ width: 98%; } } @media (min-width: 600px) and (max-width: 999px){ .col-md-1{ width: 6.33%; } .col-md-2{ width: 14.66%; } .col-md-3{ width: 23%; } .col-md-4{ width: 31.33%; } .col-md-5{ width: 39.66%; } .col-md-6{ width: 48%; } .col-md-7{ width: 56.33%; } .col-md-8{ width: 64.66%; } .col-md-9{ width: 73%; } .col-md-10{ width: 81.33%; } .col-md-11{ width: 89.66%; } .col-md-12{ width: 98%; } } @media (max-width: 599px){ .col-sm-1{ width: 6.33%; } .col-sm-2{ width: 14.66%; } .col-sm-3{ width: 23%; } .col-sm-4{ width: 31.33%; } .col-sm-5{ width: 39.66%; } .col-sm-6{ width: 48%; } .col-sm-7{ width: 56.33%; } .col-sm-8{ width: 64.66%; } .col-sm-9{ width: 73%; } .col-sm-10{ width: 81.33%; } .col-sm-11{ width: 89.66%; } .col-sm-12{ width: 98%; } } @media print{ .row{ border-bottom: 2px dotted black; } } /* Colors */ /* translucent red –> rgba(231,76,60 ,.3) midnight blue –> #2c3e50 silver –> #bdc3c7 sunflower –> #f1c40f emerland –> #2ecc71 wisteria –> #8e44ad wetasphalt –> #34495e */

ResponsiveCss/fonts/Geometria.ttf

ResponsiveCss/fonts/Geometria-Bold.ttf

ResponsiveCss/fonts/Geometria-BoldItalic.ttf

ResponsiveCss/fonts/Geometria-ExtraBold.ttf

ResponsiveCss/fonts/Geometria-ExtraBoldItalic.ttf

ResponsiveCss/fonts/Geometria-ExtraLight.ttf

ResponsiveCss/fonts/Geometria-ExtraLightItalic.ttf

ResponsiveCss/fonts/Geometria-Heavy.ttf

ResponsiveCss/fonts/Geometria-HeavyItalic.ttf

ResponsiveCss/fonts/Geometria-Italic.ttf

ResponsiveCss/fonts/Geometria-Light.ttf

ResponsiveCss/fonts/Geometria-LightItalic.ttf

ResponsiveCss/fonts/Geometria-Medium.ttf

ResponsiveCss/fonts/Geometria-MediumItalic.ttf

ResponsiveCss/fonts/Geometria-Thin.ttf

ResponsiveCss/fonts/Geometria-ThinItalic.ttf

ResponsiveCss/images/favicon.ico

ResponsiveCss/images/smile.gif

ResponsiveCss/index.html

NEIU CS300 HTML & CSS Responsive Design

Block One – Always Full Width

The contents of this block whill always be full width, regardless of the screen resolution or the size of your device.

Responsive Design – The Basics

Responsive design tends to use a 12 column grid. This is used by frameworks such as Bootstrap, Foundation, etc. The grid system allows us to easily adjust an elements width depending on browser size / device resolution.

How it works

  • Create an element and give it class="row"
  • Within each row, add columns until you total 12 (See examples below). Each element should be given a width. Column class names tend to have 3 parts:
    1. col
    2. size (xs, sm, md, lg, xl)
    3. # of columns (1, 2, 3,..11,12)
    4. Example: class="col-sm-1"
  • Create @media rules for various screen sizes and resolutions. When your browser or device falls within that range, any styles/rules for a specific element listed within the @media rule will override rules for that element listed outside of the @media rule
  • If a rule is outside of an @media rule and is not overridden by a specific rule within an @media rule, it will always apply, regardless of screen size / resolution
  • Depending on the width of your browser / screen resolution, the styles will change

Block Two – Grid

12 Col 1 Col 11 Col 2 Col 10 Col 3 Col 9 Col 4 Col 8 Col 5 Col 7 Col 6 Col 6 Col

Block Three – Grid

Box 1 Box 2 Box 3 Box 4 Box 5 Box 6 Box 7 Box 8

Block Four – Grid

Name Email Comments Northeastern Illinois University – CS300 © Copyright 2018

Our website has a team of professional writers who can help you write any of your homework. They will write your papers from scratch. We also have a team of editors just to make sure all papers are of HIGH QUALITY & PLAGIARISM FREE. To make an Order you only need to click Ask A Question and we will direct you to our Order Page at WriteEdu. Then fill Our Order Form with all your assignment instructions. Select your deadline and pay for your paper. You will get it few hours before your set deadline.

Fill in all the assignment paper details that are required in the order form with the standard information being the page count, deadline, academic level and type of paper. It is advisable to have this information at hand so that you can quickly fill in the necessary information needed in the form for the essay writer to be immediately assigned to your writing project. Make payment for the custom essay order to enable us to assign a suitable writer to your order. Payments are made through Paypal on a secured billing page. Finally, sit back and relax.

Do you need an answer to this or any other questions?

Do you need help with this question?

Get assignment help from WriteEdu.com Paper Writing Website and forget about your problems.

WriteEdu provides custom & cheap essay writing 100% original, plagiarism free essays, assignments & dissertations.

With an exceptional team of professional academic experts in a wide range of subjects, we can guarantee you an unrivaled quality of custom-written papers.

Chat with us today! We are always waiting to answer all your questions.

Click here to Place your Order Now