Assessment 2 HTML5 and CSS CSE1ITX Information Technology Fundamentals

Assessment 2
HTML5 and CSS
CSE1ITX Information Technology Fundamentals
Before you begin
Objectives
This is an individual assignment. Students are not permitted to work in a group when writing this assignment.
Copying and Plagiarism
This is an individual assignment. Students are not permitted to work in a group when writing this assignment. Plagiarism is the submission of another person’s work in a manner that gives the impression that the work is their own. La Trobe University treats plagiarism seriously. When detected, penalties are strictly imposed.
Further information can be found on http://www.latrobe.edu.au/students/academic
integrity/explanation/plagiarism
Submission Guidelines
Your assignment submission should be typed, not written/drawn by hand. Submit the electronic copy of your assignment through the subject LMS.
Submission after the deadline will incur a penalty of 5% of the available assignment mark per day capped at 5 days. No assignment will be accepted after 5 days. If you have encountered difficulties that lead to late submission or no submission, you should apply for special consideration.
2 © Didasko 2020. All rights reserved. 2
Background
You are asked to develop a web site with a business theme that you must decide upon. Your website should be designed to suit its target audience and meet the target audiences’ purpose of the site. The website will comprise HTML and CSS code only.
Requirement 1 – The Business Idea
You must choose an appropriate business idea for your site. A popular (but optional) choice is to choose a scenario that you have a personal connection with, either through yourself, family, employment or friends.
It is recommended that you discuss your ideas and plans for this website with an academic before the actual coding and development. Please lodge a support request for this.
Some ideas are below:
Bakery Computer store Gymnasium Bank Fishing tour company
Furniture store Craft store Computer games
store Travel agency Toy store
Hair salon Hobbies store Motorcycle store Flower shop Trekking tour company
Car sales yard Tattoo parlour Indian restaurant Bicycle store Flying school Clothes store Sports store Chinese
restaurant Cake shop Gliding school
Shoe store Parachuting club Cafe Jewellery store Window washing Music store Pizza shop Video hire store Barber shop Outdoors equipment store
Hotel Car repair shop Magic shop Book shop Golf club with “pro store”
Caravan supplier Optometrist Car spare parts
shop Hardware store Tennis club with
“pro store”
Fast food shop Apple store Women’s fashion
store Magic shop Computer games
store
Movie theatre Pet store Plant nursery Electrical store White goods store
Camera shop Event planner Men’s fashion
store Lollies shop Sportswear shop
Bar/pub Driving school A fan club Bridal wear shop Specialty cheese shop
Reception centre A casino A gadgets Store Tourist resort Real estate agency
Locksmith Surf shop Hot air ballooning Art gallery Landscape gardening

Greek restaurant
Taxi company
Solar panel
company
Fencing company
Mobile phone
store

You must also note the restrictions below:

1. The website cannot be a modification of an existing website. It must be a new website. 2. The website cannot be of a business that has dealings that could be considered to be controversial (
3. The website cannot be of business from your previous enrolment if you are a repeating student for this subject.
© Didasko 2020. All rights reserved. 3
4. The website cannot include copyrighted materials; however, you are welcome to use images with an open licence that come under the Creative Commons licence as per a Google image search, or equivalent (e.g. pixabay.com). See picture below:
Requirement 2 – Website pages
The website will have a total of six (5) pages, comprising of the following:
1. Home page (index.html)
This page will be an attractive homepage design for the business with a combination of text and images.
2/3. First/second content pages (names of your choice)
These three pages will be the main content pages. They will have enough content to be roughly equivalent to 4-6 large paragraphs of text, or equivalent with images, tables, and/or other elements. Ideas for these pages could be information about the business, products, services, and so on.
One of the pages should include a table showing either:
 the opening hours of the business across the week or
 the hours during the week direct contact can be made with the business for support/advice. 4.Contact form page (contact.html)
This page will be a contact form for the business. It will include appropriate form fields to collect information about the user completing the form so that the business can get back in touch.
The contact form includes a

tag that is comprised of the following components:
 a method attribute,
 an action attribute,
 appropriate form controls (minimum of four),
 validation of form controls using HTML5 attributes (not JavaScript, jQuery, etc.),
 a submit button
The submit button will take the user to the response page (below).
5. Contact form response page (response.html)
This will be a page that acknowledges the submission of the form with the message “Thank you for submitting the form”. Note that the contact form (and response page) do no real processing with the submitted data, but rather “simulate” the form submission process.
4 © Didasko 2020. All rights reserved. 4
Requirement 3 – HTML and HTML5 programming The following HTML and HTML5 features will be included as follows:
1. DocType tag
DOCTYPE declaration tag must be included and used correctly on every page.
2. Document structure tags
The , , and tags must be included and used correctly on every page.
3. Metadata tags
The tag and at least one <meta> metadata tag must be included in the <head> section of every page.<br /> 4. Repeating semantic tags<br /> The HTML semantic tags </p> <header>, </p> <nav>, <main>, and </p> <footer> must be included and used correctly on every page.<br /> 5. Other semantic tags<br /> The HTML semantic tags </p> <article>, </p> <section>, and </p> <aside> must be included and used correctly at least once on any page.<br /> 6. Navigation bar<br /> All pages must have a navigation bar (with </p> <nav>) that has links to the five main pages (all except response.html). The links must be relative links (not absolute links).<br /> Basic tags<br /> The following tags must be included and used correctly anywhere in the website: paragraphs, headings, lists, links, images, and tables.<br /> Requirement 4 – CSS and CSS3 programming The following CSS and CSS3 features will be included as follows:<br /> 1. CSS linkage<br /> All CSS code must be in a single external style sheet that is referenced with a <link> tag within the <head> element on each page. We are specifically asking for an external style sheet, so do notuse embedded or inline styles, unless there is a good reason to do so.<br /> 2. Styling for content<br /> A series of CSS and CSS3 styling should be applied for the content components of the website, such as colours, font attributes, etc.<br /> 3. Styling for structure<br /> A series of CSS and CSS3 styling should be applied for the structural components of the website, such as positions, height, width, borders, margins, padding, etc.<br /> 4. Referencing elements<br /> The HTML elements should be referenced with a combination of type selectors, ID selectors, and class selectors.<br /> © Didasko 2020. All rights reserved. 5<br /> Requirement 5 – Big picture<br /> Some marks are awarded to judge your site overall, in terms of its presentation, consideration towards accessibility, and meeting the business goals.<br /> 1. Presentation<br /> Is the website subjectively attractive, well presented, and contemporary in nature?<br /> 2. Accessibility<br /> Is the website considerate towards users with a disability, regarding aspects such as choosing colour combinations with good contrast, reasonable fonts (sans serif and web safe), and using the alt attribute with images to provide alternate text for screen readers?<br /> 3. Business goals<br /> Have the aims and objectives of the site been met through the final product? How useful and realistic is the site in its current form for a real-life business considering the restrictions of this assignment?<br /> Requirement 6 – Code quality<br /> Your code must be in good shape in terms of presentation and validity. The following guidelines apply as a minimum:<br /> 1. Case consistency<br /> The HTML and CSS code must use lowercase characters for tags and attributes, rather than uppercase or a mixture. I.e.: </p> <table>, and not <TABLE> or <Table>.<br /> 2. Indentation<br /> Each “block” of HTML or CSS code must be indented consistently by one level. A level may be 3-4 spaces or one tab, depending on the preferences you have set in NotePad++. Most importantly, you must be consistent.<br /> 3. HTML validation<br /> All HTML files must validate cleanly when validated by the “direct input” method on the W3C HTML validation service (https://validator.w3.org). Zero errors and zero warnings are expected.<br /> 4. CSS validation<br /> The CSS file must validate cleanly when validated by the “direct input” method on the W3C CSS validation service (https://jigsaw.w3.org/css-validator). Zero errors and zero warnings are expected. </p> <p>6 © Didasko 2020. All rights reserved. 6<br /> Requirement 7 – Software and technology Please note the following technology-related requirements of this assignment:<br /> 1. Browser compatibility<br /> The final product should be viewable on a variety of browsers such as Chrome, Edge, and Firefox. The code should be developed in a way that gives the website a consistent appearance across these browsers.<br /> 2. Programmer’s editor<br /> The website will be created with a code editor like NodePad++ (https://notepad-plus-plus.org), Atom, Visual Studio Code, Bracket etc., as the programmer’s editor.<br /> Based on the above, it is therefore clear that you must NOT use a WYSIWYG-style integrated development environment (DreamWeaver, etc.). The code of your solution must be 100% hand coded in any of the above mentioned editors. This is important whilst learning HTML and CSS for the first time.<br /> 3. Client-side web development technology<br /> Regarding client-side web development technologies, the website will comprise HTML and CSS only. Therefore, do not include JavaScript, jQuery or another client-side technology. In addition, do not use any third-party templates (Bootstrap, etc.) as a substitute for parts of your development work. </p> <p> © Didasko 2020. All rights reserved. 7<br /> Submission information<br /> Please note the following details about the submission size, submission organisation and submitting your assignment:<br /> Submission size<br /> Your submission must be less than 10 megabytes when compressed as a single Zip file and should really be much less than this. The learning management system will not accept submissions that exceed this limit.<br /> Here are some tips to keep your submission size manageable:<br /> 1. If you decide to do something like include original photos from your camera (completely up to you), they may be several megabytes each, therefore they may require post-processing to reduce them in size.<br /> 2. If you physically shrink images on your file system, your website will be smaller. If you dynamically shrink images with HTML height and width attributes in your code, your files sizes may be larger than needed.<br /> Submission organisation<br /> Create a folder called xxx_cse1itx_assessment2 (where xxx is your student number) to hold all your work:<br />  HTML files<br />  CSS style file<br />  A subfolder called “images” for all graphic assets<br /> Zip your xxx_cse1itx_assessment2 folder as xxx_cse1itx_assessment2.zip when you are ready to submit (below). </p> <p>Submitting your assignment<br /> When you have completed the website, submit your zip archive via the Assessment 2 Upload link on the LMS system.<br /> 8 © Didasko 2020. All rights reserved. 8<br /> Marking guide<br /> Requirement Criteria Points1. Business idea and website<br /> 4<br /> implementation.<br /> Good business idea and the website meets its aims and<br /> objectives.<br /> Website consists of HTML and CSS only.<br /> All images in ‘image’ folder and linked properly in HTML<br /> documents.<br /> Website created with a code editors like Notepad++, Atom,<br /> Visual Studio Code, Bracket etc.<br /> 2. Presentation and Accessibility 5<br /> Presentation is attractive, well presented, and contemporary throughout<br /> Viewable across multiple browsers.<br /> Website has colour combinations with good colour<br /> contrast, reasonable fonts (sans serif and web safe), and<br /> uses the alt attribute with images to provide alternate text<br /> for screen readers.<br /> The site overall is intuitive and is straightforward to<br /> navigate<br /> 3. Quantity and quality of page<br /> 5<br /> content<br /> The home page contains a combination of text and images.<br /> Content consists of 4-6 large paragraphs of text or<br /> equivalent with images, tables, and/or other elements.<br /> A table displaying contact hours has been implemented<br /> that displays information clearly and correctly<br /> 4. Use of HTML tags 7 </p> <p>HTML code consistently uses lowercase characters for tags and attributes throughout and well indented for code readability. </p> <p> © Didasko 2020. All rights reserved. 9</p> <p>No errors and warnings according to W3C HTML<br /> validation service.<br /> In every page:<br />  DocType tag,<br />  <html>, <head>, <title>, <meta>, <body><br />  </p> <header>, </p> <nav>, <main>, and </p> <footer> In at least one page:<br />  </p> <article>, </p> <section>, and </p> <aside>  6 of the basic tags (</p> <p>, <h>, <a>, <img>, </p> <table>, </p> <ol>/</p> <ul>)<br /> All pages have a navigation bar (with </p> <nav>) that has links<br /> to the five main pages (all except response.html).<br /> 5. Use of CSS 5<br /> CSS code consistently uses lowercase characters for tags and attributes throughout and well indented for code<br /> readability.<br /> CSS styling is applied appropriately for the structure<br /> components of the website (such as positions, height,<br /> width, borders, margins, padding etc.) on all pages.<br /> CSS styling is applied appropriately for the content<br /> components of the website (such as colours, font<br /> attributes etc.) on all pages.<br /> No errors and warnings according to W3C HTML<br /> validation service.<br /> 6. Contact form implementation 4 </p> <p>The contact form page has been implemented and contains a correctly implemented form tag with method and action attributes.<br /> The Contact form contains three appropriate form controls (buttons, multiple inputs, checkboxes etc).<br /> Three form control types (of buttons, inputs,<br /> checkboxes) have been appropriately validated<br /> using HTML 5 attributes.<br /> Users taken to the response page with a response message when the form is submitted.</p> <p>10 © Didasko 2020. All rights reserved. 10 </p> <div class='yarpp yarpp-related yarpp-related-website yarpp-template-list'> <!-- YARPP List --> <h3>Related posts:</h3><ol> <li><a href="https://projectessays.com/empathy-map/" rel="bookmark" title="Empathy map">Empathy map</a></li> <li><a href="https://projectessays.com/describe-some-of-the-changes-that-have-taken-place-in-healthcare-delivery-over-the-years/" rel="bookmark" title="Describe some of the changes that have taken place in healthcare delivery over the years.">Describe some of the changes that have taken place in healthcare delivery over the years.</a></li> <li><a href="https://projectessays.com/using-the-average-inflation-rates-from-http-www-usinflationcalculator-com-inflation-historical-inflation-rates-use-the-geometric-mean-to-find-the-average-percent-change-in-inflation-for-the-past-5/" rel="bookmark" title="Using the average inflation rates from: http://www.usinflationcalculator.com/inflation/historical-inflation-rates/ use the geometric mean to find the average percent change in inflation for the past 5 years.">Using the average inflation rates from: http://www.usinflationcalculator.com/inflation/historical-inflation-rates/ use the geometric mean to find the average percent change in inflation for the past 5 years.</a></li> <li><a href="https://projectessays.com/scenarioit-is-frankies-first-week-of-work-as-the-executive-assistant-to-the-pr/" rel="bookmark" title="Scenario It is Frankie’s first week of work as the executive assistant to the pr">Scenario It is Frankie’s first week of work as the executive assistant to the pr</a></li> <li><a href="https://projectessays.com/module-06-contentxyz-technologies-had-a-ddos-distributed-denial-of-service-at/" rel="bookmark" title="Module 06 Content XYZ Technologies had a DDoS (Distributed Denial of Service) at">Module 06 Content XYZ Technologies had a DDoS (Distributed Denial of Service) at</a></li> <li><a href="https://projectessays.com/covid-19-emerged-without-previous-notice-this-external-factor-impacted-all-organizations-around-the-globe-external-factors-are-unpredictable-and-it-is-important-2/" rel="bookmark" title="COVID-19 emerged without previous notice. This external factor impacted all organizations around the globe. External factors are unpredictable, and it is important">COVID-19 emerged without previous notice. This external factor impacted all organizations around the globe. External factors are unpredictable, and it is important</a></li> </ol> </div> </div><!-- .entry-content .clear --> </div> </article><!-- #post-## --> <nav class="navigation post-navigation" aria-label="Post navigation"> <span class="screen-reader-text">Post navigation</span> <div class="nav-links"><div class="nav-previous"><a title="Limited Shell Through this programming assignment, the students will learn to do the following: Work with processes using fork, pipe, wait, dup2, and the exec system calls. Additional practice with a Makefile with an all target Work with the different address spaces The main idea of this assignment is to write a limited function shell that only runs a few programs from a menu. Write 4 small programs to start with followed by the menu program called newshell. 1. letters One program will output the letters in the alphabet to the screen. Make sure they are printed one at a time. They can be printed all on one line. If you already got it working one per line there will not be a deduction. Usage would be: letters" href="https://projectessays.com/limited-shell-through-this-programming-assignment-the-students-will-learn-to-do-the-following-work-with-processes-using-fork-pipe-wait-dup2-and-the-exec-system-calls-additional-practice-with/" rel="prev"><span class="ast-post-nav"><span aria-hidden="true" class="ahfb-svg-iconset ast-inline-flex svg-baseline"><svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path d='M134.059 296H436c6.627 0 12-5.373 12-12v-56c0-6.627-5.373-12-12-12H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.569 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296z'></path></svg></span> Previous</span> <p> Limited Shell Through this programming assignment, the students will learn to do the following: Work with processes using fork, pipe, wait, dup2, and the exec system calls. Additional practice with a Makefile with an all target Work with the different address spaces The main idea of this assignment is to write a limited function shell that only runs a few programs from a menu. Write 4 small programs to start with followed by the menu program called newshell. 1. letters One program will output the letters in the alphabet to the screen. Make sure they are printed one at a time. They can be printed all on one line. If you already got it working one per line there will not be a deduction. Usage would be: letters </p></a></div><div class="nav-next"><a title="Create a PowerPoint presentation demonstrating ethical frameworks used for problem-solving in your workplace. Which approach would you use based on the descriptions in th" href="https://projectessays.com/create-a-powerpoint-presentation-demonstrating-ethical-frameworks-used-for-problem-solving-in-your-workplace-which-approach-would-you-use-based-on-the-descriptions-in-th/" rel="next"><span class="ast-post-nav">Next <span aria-hidden="true" class="ahfb-svg-iconset ast-inline-flex svg-baseline"><svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path d='M313.941 216H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h301.941v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.569 0-33.941l-86.059-86.059c-15.119-15.119-40.971-4.411-40.971 16.971V216z'></path></svg></span></span> <p> Create a PowerPoint presentation demonstrating ethical frameworks used for problem-solving in your workplace. Which approach would you use based on the descriptions in th </p></a></div></div> </nav><div class="ast-single-related-posts-container ast-container--"><div class="ast-related-posts-title-section"> <h2 class="ast-related-posts-title"> Related Posts </h2> </div><div class="ast-related-posts-wrapper"> <article class="ast-related-post post-10658 post type-post status-publish format-standard hentry category-uncategorized"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://projectessays.com/question-1-janet-brown-is-45-and-divorced-she-has-two-children-who-live-with-her-and-are-dependent-on-her-stephen-is-12-sarah-is-17-and-has-been-certified-as-eligible-for-the-disability-credit-j/" target="_self" rel="bookmark noopener noreferrer">Question 1 Janet Brown is 45 and divorced. She has two children who live with her and are dependent on her. Stephen is 12. Sarah is 17 and has been certified as eligible for the disability credit. Janet’s financial information for 2019 and 2020 includes the following: 2020                2019  Salary and taxable benefits          $105,000        $100,000 Car expenses deducted in computing employment income</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://projectessays.com/category/uncategorized/" rel="category tag">Uncategorized</a></span> / By <span class="posted-by vcard author" itemtype="https://schema.org/Person" itemscope="itemscope" itemprop="author"> <a title="View all posts by " href="https://projectessays.com/author/wapqjcsx/" rel="author" class="url fn n" itemprop="url" > <span class="author-name" itemprop="name" > </span> </a> </span> </div> </header> <div class="entry-content clear"> </div> </div> </div> </article> <article class="ast-related-post post-10660 post type-post status-publish format-standard hentry category-uncategorized"> <div class="ast-related-posts-inner-section"> <div class="ast-related-post-content"> <div class="ast-related-post-featured-section ast-no-thumb"></div> <header class="entry-header related-entry-header"> <h3 class="ast-related-post-title entry-title"> <a href="https://projectessays.com/scenario-you-are-employed-by-pacific-it-solutions-as-a-solutions-integrator-your-job-description-is-to-implement-it-solutions-and-provide-customer-support-one-of-your-long-time-customers-western/" target="_self" rel="bookmark noopener noreferrer">Scenario: You are employed by Pacific IT Solutions as a solutions integrator. Your job description is to implement IT solutions and provide customer support. One of your long-time customers, Western Mining, has their head office in Sydney and is opening a branch office in Brisbane. You have been contracted to setup the network. A meeting has been held to start the project. The minutes of the meeting are as follows:</a> </h3> <div class="entry-meta ast-related-cat-style--none ast-related-tag-style--none"><span class="ast-taxonomy-container cat-links default"><a href="https://projectessays.com/category/uncategorized/" rel="category tag">Uncategorized</a></span> / By <span class="posted-by vcard author" itemtype="https://schema.org/Person" itemscope="itemscope" itemprop="author"> <a title="View all posts by " href="https://projectessays.com/author/wapqjcsx/" rel="author" class="url fn n" itemprop="url" > <span class="author-name" itemprop="name" > </span> </a> </span> </div> </header> <div class="entry-content clear"> </div> </div> </div> </article> </div> </div> </main><!-- #main --> </div><!-- #primary --> <div class="widget-area secondary" id="secondary" itemtype="https://schema.org/WPSideBar" itemscope="itemscope"> <div class="sidebar-main" > <aside id="block-2" class="widget widget_block widget_recent_entries"><ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a class="wp-block-latest-posts__post-title" href="https://projectessays.com/assignment-prompt-policy-literature-review-objective-the-purpose-of-this-assignment-is-to-critically-analyze-a-recent-healthcare-legislature-and-review-the-relevant-literature-focusing-on-the-role/">Assignment Prompt: Policy Literature Review Objective: The purpose of this assignment is to critically analyze a recent healthcare legislature and review the relevant literature, focusing on the role of nursing in advocating for and supporting policy changes. You will conduct a literature review of peer-reviewed articles, examine statis</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://projectessays.com/wk3-assignment-for-this-case-study-compare-sharp-healthcares-financials-from-the-year-2022-and-the-year-2023-sharp-healthcare-audited-financials-2022-and-2023-next-please-include-the-below-k/">Wk3 assignment For this case study, compare Sharp Healthcare’s financials from the year 2022 and the year 2023. Sharp Healthcare Audited Financials 2022 and 2023 Next, please include the below key elements to answer your assignment: • Provide the planning process</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://projectessays.com/case-study-performance-for-scripps-health-palomar-health-for-this-case-st/">Case Study: Performance for Scripps Health & Palomar Health For this case st</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://projectessays.com/after-learning-about-physical-cognitive-and-socio-emotional-perspectives-in-chapter-1-students-will-be-placed-into-groups-students-can-choose-any-stage-of-development-from-infancy-childhood-to-lat/">After learning about physical, cognitive, and socio-emotional perspectives in Chapter 1, students will be placed into groups. Students can choose any stage of development from Infancy Childhood to Late Adulthood. Students will research ONE of the following: 1. Toy (includes games) 2. A Social Media Platform (Tik Tok, Instagram, Facebook) 3. Amusement Park</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://projectessays.com/the-goal-of-this-assignment-is-to-understand-the-principles-of-project-valuation-and-capital-budgeting-in-a-practical-setting-using-a-combination-of-fictitious-data-and-real-world-examples-begin-by/">The goal of this assignment is to understand the principles of project valuation and capital budgeting in a practical setting, using a combination of fictitious data and real-world examples. Begin by proposing a fictitious project for a hypothetical company. This can be any type of projec</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://projectessays.com/task-1-financials-display-general-ledger-account-use-the-sap-fiori-launchpad-to-display-a-general-ledger-g-l-account-within-your-chart-of-accounts-businesses-typically-maintain-multiple-bank-acco/">Task 1: Financials Display General Ledger Account Use the SAP Fiori Launchpad to display a General Ledger (G/L) account within your chart of accounts. Businesses typically maintain multiple bank accounts</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://projectessays.com/assignment-paper-improving-quality-of-care-for-people-using-healthcare-services-element-011-in-this-essay-you-will-be-required-to-critically-reflect-on-a-particular-service-user-experience-from-cl/">Assignment paper- Improving Quality of Care for people using Healthcare services (Element 011) In this essay, you will be required to critically reflect on a particular service user experience from clinical practice and generate evidence- based rationale for a service improvement proposal. After presentation</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://projectessays.com/7hr03-strategic-reward-management-assignment-uk/">7HR03 Strategic Reward Management Assignment UK</a></li> </ul></aside> </div><!-- .sidebar-main --> </div><!-- #secondary --> </div> <!-- ast-container --> </div><!-- #content --> <footer class="site-footer" id="colophon" itemtype="https://schema.org/WPFooter" itemscope="itemscope" itemid="#colophon"> <div class="site-below-footer-wrap ast-builder-grid-row-container site-footer-focus-item ast-builder-grid-row-full ast-builder-grid-row-tablet-full ast-builder-grid-row-mobile-full ast-footer-row-stack ast-footer-row-tablet-stack ast-footer-row-mobile-stack" data-section="section-below-footer-builder"> <div class="ast-builder-grid-row-container-inner"> <div class="ast-builder-footer-grid-columns site-below-footer-inner-wrap ast-builder-grid-row"> <div class="site-footer-below-section-1 site-footer-section site-footer-section-1"> <div class="ast-builder-layout-element ast-flex site-footer-focus-item ast-footer-copyright" data-section="section-footer-builder"> <div class="ast-footer-copyright"><p>Copyright © 2025 Academic-Essay Writing Service | Powered by <a href="https://wpastra.com/" rel="nofollow noopener" target="_blank">Astra WordPress Theme</a></p> </div> </div> </div> </div> </div> </div> </footer><!-- #colophon --> </div><!-- #page --> <div class="ancr-group ancr-pos-top ancr-sticky"><div id="ancr-16019" class="ancr ancr-wrap ancr-lo-same_row ancr-align-left ancr-has-close-btn" data-props="{"status":"active","display":"immediate","show_on":"page_open","show_after_duration":"0","show_after_scroll":"0","open_animation":"slide","schedule_from":"","schedule_to":"","position":"top","sticky":"yes","layout":"same_row","container_width":"1000px","ticker_speed":"20","close_btn":"yes","close_animation":"slide","close_content_click":"no","auto_close":"0","keep_closed":"no","closed_duration":"0","devices":"all","id":16019}"><a href="#" class="ancr-close-btn ancr-close" title="Close"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="ancr-close-icon" viewBox="0 0 50 50"><path fill="currentColor" d="M 9.15625 6.3125 L 6.3125 9.15625 L 22.15625 25 L 6.21875 40.96875 L 9.03125 43.78125 L 25 27.84375 L 40.9375 43.78125 L 43.78125 40.9375 L 27.84375 25 L 43.6875 9.15625 L 40.84375 6.3125 L 25 22.15625 Z"/></svg></a><div class="ancr-container"><div class="ancr-content"><div class="ancr-inner"><h4><strong>GET HELP WITH YOUR HOMEWORK PAPERS @ 25% OFF</strong></h4> </div></div><div class="ancr-btn-wrap"><a href="https://bestwriters.org/dashboard/orders/create" target="_blank" class="ancr-btn ancr-btn-secondary">CLICK HERE TO POST YOUR ASSIGNMENT, IT'S FREE!!!</a></div></div></div><style> #ancr-16019{ background:#52caf9;color:#fff !important;box-shadow:0 2px 4px -2px rgba(0, 0, 0, 0.5); } #ancr-16019 .ancr-btn-primary{ background:#fff;color:#000000 !important;box-shadow:0 2px 4px -2px rgba(0, 0, 0, 0.5); } #ancr-16019 .ancr-btn-secondary{ background:#e05d06;color:#000000 !important;box-shadow:0 2px 4px -2px rgba(0, 0, 0, 0.5); } #ancr-16019 .ancr-container{ max-width: 1000px; } #ancr-16019 .ancr-content a{color: #fff; } </style></div><script type="text/javascript" id="zsiqchat">var $zoho=$zoho || {};$zoho.salesiq = $zoho.salesiq || {widgetcode: "bc691aad894a933e87506a5b91d0cf13778ef32a7c6161e1e2335b0d39613ea9", values:{},ready:function(){}};var d=document;s=d.createElement("script");s.type="text/javascript";s.id="zsiqscript";s.defer=true;s.src="https://salesiq.zoho.com/widget";t=d.getElementsByTagName("script")[0];t.parentNode.insertBefore(s,t);</script> <p><strong><span class="has-inline-color has-vivid-red-color">For faster services, inquiry about  new assignments submission or  follow ups on your assignments please text us/call us on +1 (251) 265-5102</span></strong></p> <p style="text-align: center;"><a href="https://bestwriters.org/order" target="_blank" rel="noopener"> <img src="https://dabuttonfactory.com/button.png?t=Write+My+Paper&f=Open+Sans-Bold&ts=26&tc=fff&hp=47&vp=20&c=11&bgt=unicolored&bgc=15d798" alt="Write My Paper Button" /> </a></p> <div id="wws-layout-1" class="wws-popup-container wws-popup-container--position"> <div class="wws-gradient wws-gradient--position"></div> <!-- Popup --> <div class="wws-popup" data-wws-popup-status="0"> <!-- Popup header --> <div class="wws-popup__header"> <!-- Popup close button --> <div class="wws-popup__close-btn wws-shadow wws--bg-color wws--text-color"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"/></svg> </div> <div class="wws-clearfix"></div> <!-- .Popup close button --> </div> <!-- .Popup header --> <!-- Popup body --> <div class="wws-popup__body"> <!-- Popup support --> <div class="wws-popup__support-wrapper"> <div class="wws-popup__support-img-wrapper wws-shadow"> <img class="wws-popup__support-img" src="https://projectessays.com/wp-content/plugins/wordpress-whatsapp-support/assets/img/user.svg" alt="WeCreativez WhatsApp Support" width="50" height="50"> </div> <div class="wws-popup__support wws-shadow"> <div class="wws-popup__support-about wws--text-color wws--bg-color"> We are here to answer your questions. Ask us anything! </div> <div class="wws-popup__support-welcome"> 👋 Hi, how can I help? </div> </div> </div> <!-- Popup support --> <!-- Popup input --> <div class="wws-popup__input-wrapper wws-shadow"> <input type="text" class="wws-popup__input" placeholder="Reply to BestWriters" autocomplete="off"> <svg class="wws-popup__send-btn" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;" xml:space="preserve"> <style type="text/css"> .wws-lau00001{fill:#22c15e80;} .wws-lau00002{fill:#22c15e;} </style> <path id="path0_fill" class="wws-lau00001" d="M38.9,19.8H7.5L2,39L38.9,19.8z"></path> <path id="path0_fill_1_" class="wws-lau00002" d="M38.9,19.8H7.5L2,0.7L38.9,19.8z"></path> </svg> </div> <div class="wws-clearfix"></div> <!-- .Popup input --> </div> <!-- .Popup body --> </div> <!-- .Popup --> <!-- .Popup footer --> <div class="wws-popup__footer"> <!-- Popup open button --> <div class="wws-popup__open-btn wws-shadow wws--text-color wws--bg-color"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg> <span>Hi, how can I help?</span> </div> <div class="wws-clearfix"></div> <!-- .Popup open button --> </div> <!-- Popup footer --> </div> <div id="ast-scroll-top" tabindex="0" class="ast-scroll-top-icon ast-scroll-to-top-right" data-on-devices="both"> <span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span> <span class="screen-reader-text">Scroll to Top</span> </div> <script id="astra-theme-js-js-extra"> var astra = {"break_point":"921","isRtl":"","is_scroll_to_id":"1","is_scroll_to_top":"1","is_header_footer_builder_active":"1","responsive_cart_click":"flyout"}; </script> <script src="https://projectessays.com/wp-content/themes/astra/assets/js/minified/frontend.min.js?ver=4.8.9" id="astra-theme-js-js"></script> <script id="buttonizer_frontend_javascript-js-extra"> var buttonizer_data = {"plugin":"buttonizer","status":"success","result":[{"data":{"name":"New group","show_mobile":true,"show_desktop":true,"id":"5ec34d53-6a66-4188-a1c4-f0986ca1a15b","horizontal":"right: 5%;","vertical":"bottom: 5%;","menu_animation":"bounce"},"buttons":[{"name":"New button","show_mobile":true,"show_desktop":true,"id":"8ed18690-7258-4753-9a46-25f35a7d8670","action_new_tab":"_blank","action":"https:\/\/bestwriters.org\/dashboard\/orders\/create","action_rel_attributes":"help","label":"Click To Submit Your Question & Get Plagiarism Free Answers.","icon_size":29,"icon_image_size":29,"label_font_size":38,"icon":"fas fa-file-download","label_background_color":"rgba(255, 165, 0, 1)","horizontal_position_label":"right"}]}],"warning":[],"premium":""}; var buttonizer_ajax = {"ajaxurl":"https:\/\/projectessays.com\/wp-admin\/admin-ajax.php","version":"3.4.7","buttonizer_path":"https:\/\/projectessays.com\/wp-content\/plugins\/buttonizer-multifunctional-button","buttonizer_assets":"https:\/\/projectessays.com\/wp-content\/plugins\/buttonizer-multifunctional-button\/assets\/legacy\/","base_url":"https:\/\/projectessays.com","current":[],"in_preview":"","is_admin":"","cache":"a98ed2e96c33be1dbef531da397fc077","enable_ga_clicks":"1"}; </script> <script src="https://projectessays.com/wp-content/plugins/buttonizer-multifunctional-button/assets/legacy/frontend.min.js?v=8c1308ba380f02663625b920bae5de55&ver=6.7.1" id="buttonizer_frontend_javascript-js"></script> <script id="custom-script-js-extra"> var wpdata = {"object_id":"95163","site_url":"https:\/\/projectessays.com"}; </script> <script src="https://projectessays.com/wp-content/plugins/wp-meta-and-date-remover/assets/js/inspector.js?ver=1.1" id="custom-script-js"></script> <script src="https://projectessays.com/wp-content/plugins/wordpress-whatsapp-support/assets/libraries/inputmask/jquery.inputmask.min.js?ver=5.0.6" id="wws-input-mask-js"></script> <script id="wws-public-script-js-extra"> var wwsObj = {"support_number":"+12512655102","auto_popup":"yes","auto_popup_time":"1","plugin_url":"https:\/\/projectessays.com\/wp-content\/plugins\/wordpress-whatsapp-support\/","is_mobile":"0","current_page_id":"95163","current_page_url":"https:\/\/projectessays.com\/assessment-2-html5-and-css-cse1itx-information-technology-fundamentals\/","popup_layout":"1","group_invitation_id":"XYZ12345678","admin_url":"https:\/\/projectessays.com\/wp-admin\/admin-ajax.php?ver=6784a1181f77f","scroll_lenght":"","pre_defined_text":"%0A\r\nPage Title: Assessment 2 HTML5 and CSS CSE1ITX Information Technology Fundamentals%0A\r\nPage URL: https:\/\/projectessays.com\/assessment-2-html5-and-css-cse1itx-information-technology-fundamentals\/","is_debug":"no","fb_ga_click_tracking":"{\"fb_click_tracking_status\":\"no\",\"fb_click_tracking_event_name\":\"Chat started\",\"fb_click_tracking_event_label\":\"Support\",\"ga_click_tracking_status\":\"no\",\"ga_click_tracking_event_name\":\"Button Clicked\",\"ga_click_tracking_event_category\":\"WordPress WhatsApp Support\",\"ga_click_tracking_event_label\":\"Support\"}","is_gdpr":"no","numberMasking":"(999) 999-9999","whatsapp_mobile_api":"https:\/\/api.whatsapp.com","whatsapp_desktop_api":"https:\/\/web.whatsapp.com","version":"2.3.3","security_token":"8694ecfec9"}; </script> <script src="https://projectessays.com/wp-content/plugins/wordpress-whatsapp-support/assets/js/wws-public-script.js?ver=2.3.3" id="wws-public-script-js"></script> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); </script> </body> </html> <!-- Page supported by LiteSpeed Cache 6.5.4 on 2025-01-13 05:14:00 -->