Assignment 4: Intermediate CSS Layout

Assignment 4: Intermediate CSS Layout

The purpose of this assignment is to advance our CSS layout abilities, as well as try out some other CSS design techniques and tools. In particular, we’ll use background images, grid layouts, embedded icons, and special fonts.

As usual, additional resources are at the end of this document and screenshots are in the starter files!

Task 1: Setup

This time, I’ve provided a starter HTML file for you in the assignment start files. Import this into a new project and open it in your code editor.

Task 2: HTML

Most of the HTML code has been written for you. However, there are a few things you’ll have to do:

  • In the <header>:
    • As you can see from the screenshot, the text “Assignment 4” in the <h1> is a different color from the text “Dog Magazine”. You’ll need to somehow mark up this text so that it can be selected and recolored in the CSS code. Figure out how to do this. (hint: you’ll need to do some research to find a generic container tag that behaves as an inline element.)
    • The tagline “Your Source for Information About Good Dogs” currently is not marked up with any tag. Find an appropriate tag to do this, using this resource: https://www.w3.org/TR/2014/REC-html5-20141028/common-idioms.html – sub- head

Hint: this is a bit of a trick question!

Also give this tag a class with the value “tagline”.

  • In the <main>:
    • As you can see, there are three sections within the <main> element. One section has class=”articles”. Within this section, there are several article previews separated by their headings. (Each article preview contains a short section of text with a link to the full article.)

In HTML, while we use the <section> tag to contain a subsection of the parent document, we use the <article> tag to contain content that could potentially stand on its own outside the context of the parent document. It’s also conventional to use the <article> tag to mark up short previews of articles. (Such as the article teasers we see on the front page of a magazine or news website.)

Your job is to use the <article> tag to complete the mark up in the articles section. Each article preview should be contained inside an <article> element.

  • The other two sections within the <main> element are “Article Archive” and “Our Partners”. These two sections represent content that is peripherally related to the site’s main content, but not the primary focus. You can also see that, in the screenshots, this content has been placed in its own sidebar column on the right side of the page. To mark up content like this, we can use the

<aside> element. Go ahead and implement this element.

  • In the <footer>:
    • In the “Contact” section, the links for the email and telephone number don’t currently have hrefs. Figure out how to add href attributes for email and telephone links. When clicked/tapped, these links should launch the default email client or invoke the mobile device’s telephone functionality, respectively.

Task 3: Icons

There are a few services that provide icons for use on the web; we’re going to use one called

Font Awesome. Sign up for a free account here: https://fontawesome.com/start

(As always, you may use fake information in the interest of maintaining your privacy.)

Once you have your free account, you’ll need to set up a so-called “kit” that you’ll use to apply icons to your site. Create a kit here (click the blue New Kit button): https://fontawesome.com/kits

You will then be directed to a page where you will see a “kit code”. It will look something like this (but with a unique alphanumeric component):

<script src=”https://kit.fontawesome.com/39aba2681b.js” crossorigin=”anonymous”></script>

If you don’t see your kit code, try clicking on the kit and then navigating to the “How to Use” tab:

Copy your kit code and paste it into the <head> of your document. Now you can start using icons!

To find the icons you need, visit this page: https://fontawesome.com/icons and use the search functionality. Icons are placed in your layout by copying the appropriate <i> tag and pasting it into your HTML. For example, the dog icon is embedded using this tag:

<i class=”fas fa-dog”></i>

note: The <i> tag is actually meant to do something else and doesn’t officially have anything to do with icons. Font Awesome has appropriated this tag for use with their system. Why do you think they did this? What are the pros and cons of using the <i> tag? What was it originally meant for? What should you do if your CSS code is directing special styles to <i> elements?

In your site, the icons should be implemented as hyperlinks so that one can click on them to be directed to the appropriate social media page.

The use of icons in our design presents special challenges for accessibility. We need to make sure that users with visual disabilities are able to perceive the purpose of the hyperlink when using a screen reader. Therefore, we need to make sure that even though users navigating visually will perceive the purpose by seeing the icon, the HTML also contains some text description of the link that can be converted to audio by a screen reader program. Figure out how to do that here: https://fontawesome.com/how-to-use/on-the-web/other- topics/accessibility#web-fonts-semantic

They provide a few different choices for making your icons accessible; my opinion is that the best option is the one that involves using the aria-label and aria-hidden attributes.

Optional task: figure out what ARIA stands for, and what the ARIA specification is meant to do.

Task 4: Google Fonts:

So far, we’ve been using boring fonts that are guaranteed to work in every browser. This has been necessary because there’s no way to know which fonts will be available on a user’s system. However, there’s another way: Google Fonts (and other similar services) which allow us to embed fonts that can be automatically downloaded onto the user’s system when they view the page.

Spend a bit of time exploring the fonts available at https://fonts.google.com/. Be sure to experiment with the search and filter options.

Figure out how to select font families and add them to your shopping cart of fonts. (They actually call it Selected Families, not shopping cart.) Figure out how to view your selected fonts and add and remove different styles.

Then, do the following:

  • Add the Jost font family with the following styles:
    • Regular 400
    • Regular 400 italic
    • Regular 600
  • Add the Crimson Text font family with the following styles:
    • Regular 400

(note that numbers such as 400, 600 etc. correspond to the font-weight.)

From the Selected Family menu, figure out how to get the line of CSS code that you will paste in your CSS stylesheet to embed these fonts in your site. Hint: the relevant CSS code will involve the @import rule. Warning: don’t copy the <style> tags if you intend to place this code in your CSS file!

Paste this @import rule at the top of your stylesheet. You can now use these fonts on the page the way you would use any font: with the font-family CSS property! Note that font family names that have spaces in them (like “Crimson Text”) will have to be surrounded by double string quotes.

Set the default font family for the whole page to “Crimson Text” with serif as the fallback. Have the font family for all headings set to Jost with sans-serif as the fallback. Have the tagline also set to Jost, but using the italic style. (figure out how to do this.)

Task 5: Basic Styles

Using CSS, implement the following:

  • Set the width of all images to 100% so that they fill their containers.
  • Change the color of “Assignment 4” in the <h1> to steelblue.
  • In the starter files, I’ve given you an image called dog_and_cat_pattern-11.jpg. Using the background-image property, apply this image to the <body>: https://www.w3schools.com/cssref/pr_background-image.asp
    • Since the image is too large for the page, we need to make it smaller using the

background-size property. Figure out how to do this.

  • Set the background color of the wrapper <div> to white. Set an appropriate padding, box shadow and maximum width (1000px). Center the element in the window. The wrapper should not get larger than 1000px, but should shrink appropriately when the browser window is made narrower than 1000px.

What does the “a” stand for in rgba()?

Task 6: Grid Layout For Navigation Menu

By default, our HTML container elements (such as footer, main, nav, section, article, etc.) will stack on top of each other vertically. (As block elements do.) However, we’re often going to need to create layouts that are a bit more complex than that. For example, we may need to create multi-column layouts, sidebars, grid layouts, etc.

To do this, we’re going to use a new display property called grid. Let’s start by using this property to align the elements of our navigation menu horizontally. While we previously did this by using display:inline-block, the CSS grid system gives us the advantage of creating a responsive system in which the nav elements resize themselves to fit the window, regardless of the window or device size.

Properties that affect the whole grid layout are always applied to the parent element in which the grid cells are contained as children. In the case of the navigation menu on this page, figure out which element is the parent, and which elements are the children that will become the grid cells.

In the CSS code, select the parent element and add the following property:

display: grid;

The parent is now a grid container. We now need to set up a column template for the grid. In the parent style declaration block, set the following CSS property:

grid-template-columns: 1fr 1fr 1fr 1fr;

The above code is setting up four columns (since our navigation menu has four items). The fr unit is used for the flexible length value. What we’re doing here is dividing the free space inside the grid parent into four equal parts. We know they’re equal because each column has the same value: 1fr. If we wanted one column to be larger than the others, we could give it a larger value, like 2fr, for example.

In order to add some space between the grid columns, use the grid-gap property:

gap: 1rem;

Optional challenge: try reducing the number of columns in the grid. What happens? What happens if you add additional columns?

A few other things you should do:

  • Remove the bullet points from the list;
  • Figure out how to remove the empty space on the left side of the grid. Where is this coming from? Hint: the inspector tool will be helpful for this.

Task 7: Other Grid Layouts

Using CSS grid, do the following:

  • Figure out how to split the <main> element into two columns with the left column being three times wider than the right column. The left column should contain the “articles” section (with “Today’s Headlines”) and the right column should contain the <aside> content (with “Article Archive” and “Our Partners”).

Make sure the <main> element has only two direct children, which will be arranged as the left and right column. If you have more than two children in the <main> element, you may need to revisit the code you wrote in Task 2.

  • Figure out how to split the <footer> into three columns of equal width.
  • Figure out how to split the “articles” section into a grid with two columns and multiple rows. This section should have, in the HTML mark up, five children: one heading and four articles. (You may need to revisit your solution for Task 2 if this is not currently the case.)

This property allows us to have an element stretch across multiple columns by specifying a start column and end column. (or a start column and the number of columns to stretch across.)

  • Note that you don’t have to do anything special to set up multiple rows; the grid cells will automatically flow into new rows once the first row is filled.

Task 8: Remaining Styles

The hard part is done; now we just need to add a few additional styles:

  • The two theme colors for this page are brown and steelblue; apply these colors to the appropriate elements.
  • Use the inline-block display property to horizontally align the social media icons. Remove the list bullets. Try to match the size and spacing from the screenshots.
  • Match the colors and approximate size of the headings to the screenshots.
  • Add borders, padding and margin to match the screenshots.
    • Remember that the gap property can be used to add space between grid cells.
  • Set the background color of the right column to be a partially transparent version of steelblue using the rgba() function. To do this, get the RGB value of steelblue from here: https://www.rapidtables.com/web/color/html-color-codes.html
  • Implement any other styles necessary to approximately match the screenshots.

Check Your Work

  • Validate your HTML and CSS code. Don’t forget to save screenshots to hand in.
    • Embedding the Google fonts in your HTML code may cause validation errors; try embedding them using CSS instead.

Hand In

Rename your working folder to a4-firstname-lastname. (with your own first and last name, of course!) Create a new folder called validation that contains your validation screenshots and add it to this folder. Make sure the work you’re submitting does not contain any unnecessary files, such as the screenshots from the starter files. Create a Zip archive from the a4-firstname- lastname folder and hand it in to D2L. (Do not use some other archive format like Rar or 7z. If you’re having trouble creating a Zip archive, please let me know.)

Grading

  • [5] HTML markup
  • [2] Accessible icons
  • [2] Google fonts applied
  • [4] Grids
  • [2] Misc. styles (colors, borders, box model, etc.) Total: 15

Note that up to -2 may be deducted for improper hand in, misnamed files, disorganized workspace, etc. Please ask me if in doubt.

Resources:

Order Now
No Fields Found.
Universal Assignment (September 8, 2024) Assignment 4: Intermediate CSS Layout. Retrieved from https://universalassignment.com/assignment-4-intermediate-css-layout/.
"Assignment 4: Intermediate CSS Layout." Universal Assignment - September 8, 2024, https://universalassignment.com/assignment-4-intermediate-css-layout/
Universal Assignment July 6, 2022 Assignment 4: Intermediate CSS Layout., viewed September 8, 2024,<https://universalassignment.com/assignment-4-intermediate-css-layout/>
Universal Assignment - Assignment 4: Intermediate CSS Layout. [Internet]. [Accessed September 8, 2024]. Available from: https://universalassignment.com/assignment-4-intermediate-css-layout/
"Assignment 4: Intermediate CSS Layout." Universal Assignment - Accessed September 8, 2024. https://universalassignment.com/assignment-4-intermediate-css-layout/
"Assignment 4: Intermediate CSS Layout." Universal Assignment [Online]. Available: https://universalassignment.com/assignment-4-intermediate-css-layout/. [Accessed: September 8, 2024]

Please note along with our service, we will provide you with the following deliverables:

Please do not hesitate to put forward any queries regarding the service provision.

We look forward to having you on board with us.

Categories

Get 90%* Discount on Assignment Help

Most Frequent Questions & Answers

Universal Assignment Services is the best place to get help in your all kind of assignment help. We have 172+ experts available, who can help you to get HD+ grades. We also provide Free Plag report, Free Revisions,Best Price in the industry guaranteed.

We provide all kinds of assignmednt help, Report writing, Essay Writing, Dissertations, Thesis writing, Research Proposal, Research Report, Home work help, Question Answers help, Case studies, mathematical and Statistical tasks, Website development, Android application, Resume/CV writing, SOP(Statement of Purpose) Writing, Blog/Article, Poster making and so on.

We are available round the clock, 24X7, 365 days. You can appach us to our Whatsapp number +1 (613)778 8542 or email to info@universalassignment.com . We provide Free revision policy, if you need and revisions to be done on the task, we will do the same for you as soon as possible.

We provide services mainly to all major institutes and Universities in Australia, Canada, China, Malaysia, India, South Africa, New Zealand, Singapore, the United Arab Emirates, the United Kingdom, and the United States.

We provide lucrative discounts from 28% to 70% as per the wordcount, Technicality, Deadline and the number of your previous assignments done with us.

After your assignment request our team will check and update you the best suitable service for you alongwith the charges for the task. After confirmation and payment team will start the work and provide the task as per the deadline.

Yes, we will provide Plagirism free task and a free turnitin report along with the task without any extra cost.

No, if the main requirement is same, you don’t have to pay any additional amount. But it there is a additional requirement, then you have to pay the balance amount in order to get the revised solution.

The Fees are as minimum as $10 per page(1 page=250 words) and in case of a big task, we provide huge discounts.

We accept all the major Credit and Debit Cards for the payment. We do accept Paypal also.

Popular Assignments

FPC006 Taxation for Financial Planning

Assignment 2 Instructions Assignment marks: 95 | Referencing and presentation: 5 Total marks: 100 Total word limit: 3,000 words Weighting: 40% Download and use the Assignment 2 Answer Template provided in KapLearn to complete your assignment. Your assignment should be loaded into KapLearn by 11.30 pm AEST/AEDT on the wdue

Read More »

TCHR5001 Assessment Brief 1

TCHR5001 Assessment Brief 1 Assessment Details Item Assessment 1: Pitch your pedagogy Type Digital Presentation (Recorded) Due Monday, 16th September 2024, 11:59 pm AEST (start of Week 4) Group type Individual Length 10 minutes (equivalent to 1500 words) Weight 50% Gen AI use Permitted, restrictions apply Aligned ULOS ULO1, ULO2,

Read More »

HSH725 Assessment Task 2

turquoise By changing the Heading 3 above with the following teal, turquoise, orange or pink you can change the colour theme of your CloudFirst CloudDeakin template page. When this page is published the Heading 3 above will be removed, but it will still be here in edit mode if you wish to change the colour theme.

Read More »

Evidence in Health Assessment 2: Evidence Selection

Evidence in Health Assessment 2: Evidence Selection Student name:                                                                    Student ID: Section 1: PICO and search strategy Evidence Question: Insert evidence question from chosen scenario here including all key PICO terms.       PICO Search Terms                                                                                                                                                                                                          Complete the following table.   Subject headings Keywords Synonyms Population  

Read More »

Assessment 1 – Lesson Plan and annotation

ASSESSMENT TASK INFORMATION: XNB390 Assessment 1 – Lesson Plan and annotation This document provides you with information about the requirements for your assessment. Detailed instructions and resources are included for completing the task. The Criterion Reference Assessment (CRA) Marking Matrix that XNB390 markers will use to grade the assessment task

Read More »

XNB390 Task 1 – Professional Lesson Plan

XNB390 Template for Task 1 – Professional Lesson Plan CONTEXT FOR LESSON: SOCIAL JUSTICE CONSIDERATIONS: Equity Diversity Supportive Environment UNIT TITLE:    TERM WEEK DAY TIME 1   5           YEAR/CLASS STUDENT NUMBERS/CONTEXT LOCATION LESSON DURATION         28 Children (chl): 16 boys; 12

Read More »

A2 Critical Review Assignment

YouthSolutions Summary The summary should summarise the key points of the critical review. It should state the aims/purpose of the program and give an overview of the program or strategy you have chosen. This should be 200 words – included in the word count. Critical analysis and evaluation Your critical

Read More »

PUN364 – Workplace activity Assignment

Assessment 1 – DetailsOverviewFor those of you attending the on-campus workshop, you will prepare a report on the simulated simulated inspection below. For those of you who are not attending, you will be required to carry out your own food business inspection under the supervision of a suitably qualified Environmental

Read More »

FPC006 Taxation for Financial Planning

Assignment 1 Instructions Assignment marks: 95 | Referencing and presentation: 5 Total marks: 100 Total word limit: 3,600 words Weighting: 40% Download and use the Assignment 1 Answer Template provided in KapLearn to complete your assignment. Your assignment should be loaded into KapLearn by 11.30 pm AEST/AEDT on the due

Read More »

Mental health Nursing assignment

Due Aug 31 This is based on a Mental health Nursing assignment Used Microsoft word The family genogram is a useful tool for the assessment of individuals, couples, and families.  It can yield significant data and lead to important, new patient understandings and insights as multigenerational patterns take shape and

Read More »

Assessment 2: Research and Policy Review

Length: 2000 words +/- 10% (excluding references)For this assessment, you must choose eight sources (academic readings and policy documents) as the basis of your Research and Policy Review. You must choose your set of sources from the ‘REFERENCES MENU’ on the moodle site, noting the minimum number of sources required

Read More »

HSN702 – Lifespan Nutrition

Assessment Task: 2 Assignment title: Population Nutrition Report and Reflection Assignment task type: Written report, reflection, and short oral presentation Task details The primary focus of this assignment is on population nutrition. Nutritionists play an important role in promoting population health through optimal nutritional intake. You will be asked to

Read More »

Written Assessment 1: Case Study

Billy a 32-year-old male was admitted to the intensive care unit (ICU) with a suspected overdose of tricyclic antidepressants. He is obese (weight 160kg, height 172cm) and has a history of depression and chronic back pain for which he takes oxycodone. On admission to the emergency department, Paramedics were maintaining

Read More »

Assessment Task 8 – Plan and prepare to assess competence

Assessment Task 8 – Plan and prepare to assess competence Assessment Task 8 consists of the following sections: Section 1:      Short answer questions Section 2:      Analyse an assessment tool Section 3:      Determine reasonable adjustment and customisation of assessment process Section 4:      Develop an assessment plan Student Instructions To complete this

Read More »

Nutrition Reviews Assignment 2 – Part A and Part B

This assignment provides you with the opportunity to determine an important research question that is crucial to address based on your reading of one of the two systematic reviews below (Part A). You will then develop a research proposal outlining the study design and methodology needed to answer that question

Read More »

NUR332 – TASK 3 – WRITTEN ASSIGNMENT

NUR332 – TASK 3 – WRITTEN ASSIGNMENT for S2 2024. DESCRIPTION (For this Task 3, the word ‘Indigenous Australians’, refers to the Aboriginal and Torres Strait Islander Peoples of Australia) NUR332 Task 3 – Written Assignment – Due – WEEK 12 – via CANVAS on Wednesday, Midday (1200hrs) 16/10/2024. The

Read More »

NUR100 Task 3 – Case study

NUR100 Task 3 – Case study To identify a key child health issue and discuss this issue in the Australian context. You will demonstrate understanding of contemporary families in Australia. You will discuss the role of the family and reflect on how the family can influence the overall health outcomes

Read More »

NUR 100 Task 2 Health Promotion Poster

NUR 100 Task 2 Health Promotion Poster The weighting for this assessment is 40%. Task instructions You are not permitted to use generative AI tools in this task. Use of AI in this task constitutes student misconduct and is considered contract cheating. This assessment requires you to develop scholarship and

Read More »

BMS 291 Pathophysiology and Pharmacology CASE STUDY

BMS 291 Pathophysiology and Pharmacology CASE STUDY Assessment No: 1 Weighting: 40% Due date Part A: midnight Friday 2nd August 2024 Due date Part B: midnight Sunday 29th September 2024 General information In this assessment, you will develop your skills for analysing, integrating and presenting information for effective evidence-based communication.

Read More »

Assessment Task: Health service delivery

Assessment Task Health service delivery is inherently unpredictable. This unpredictability can arise from, for example, the assortment of patient presentations, environmental factors, changing technologies, shifts in health policy and changes in division leadership. It can also arise from changes in policy within an organisation and/or associated health services that impact

Read More »

LNDN08002 Business Cultures Resit Assessment

LNDN08002 Business Cultures Resit Assessment Briefing 2023–2024 (Resit for Term 1) Contents Before starting this resit, please: 1 Assessment Element 1: Individual Report 1 Case Report Marking Criteria. 3 Assessment Element 2: Continuing Personal Development (CPD) 4 Guidance for Assessment 2: Reflection and Reflective Practice. 5 Student Marking Criteria –

Read More »

Assessment Task 2 – NAPLAN Exercise

Assessment Task 2 (35%) – Evaluation and discussion of test items Assessment Task 2 (35%) – Evaluation and discussion of test items AITSL Standards: This assessmeAITSL Standards: This assessment provides the opportunity to develop evidence that demonstrates these Standards: 1.2        Understand how students learn 1.5        Differentiate teaching to meet with

Read More »

EBY014 Degree Tutor Group 2 Assignment

  Assignment Brief Module Degree Tutor Group 2 Module Code EBY014 Programme BA (Hons) Business and Management with   Foundation Year Academic Year 2024/2025 Issue Date 6th May 2024 Semester Component Magnitude Weighting Deadline Learning outcomes assessed 2 1 2000 words Capstone Assessment 100% 26th July, 2024 1/2/3/4 Module Curriculum

Read More »

NTW 600 Computer Network and Security

Assessment 2 Information and Rubric Subject Code  NTW 600 Subject Name Computer Network and Security Assessment Number and Title Assessment 2: Cyber Security Threats to IT Infrastructure of a real-world Organisation Assessment Type Group Assessment Length / Duration  1500 words Weighting %  30% Project Report: 20% Presentation :10% (Recorded) Total

Read More »

LAW500 Business Law Assessment 2 – Group Project

Assessment Information and Rubric Subject Code LAW500 Subject Name Business Law Assessment Number and Title Assessment 2 – Group Project Assessment Type Group Length / Duration 3000 words maximum, no ±10%, and excluding references Weighting % 30% Total Marks 100 Submission Online Submission via TurnitIn for the written report Due

Read More »

Population Nutrition Case Study Analysis

HSN702 – Lifespan Nutrition Assessment Task: 1 Assignment title: Population Nutrition Case Study Analysis Assignment task type: Short Written Report and Literature Search Strategy Task details The primary focus of this assignment is on population nutrition. Nutritionists play an important role in promoting population health through optimal nutritional intake. In

Read More »

Applied Quantitative Economics Assignment

Goldsmiths College, University of London Applied Quantitative Economics Project ** You must attempt only one project, and you must complete it either in R or in Excel ** General Background Key Stage 4 (KS4) is a legal term for the last two years of secondary school education in England leading

Read More »

Can't Find Your Assignment?

Open chat
1
Free Assistance
Universal Assignment
Hello 👋
How can we help you?