unit 15 website development assignment 2

The Computing Tutor

"inspiring students to succeed".

The Tutors Association

100% Student Pass Rate at AQA A Level!

STEM Learning Support Specialist in GCSE Maths, L2 & L3 BTEC IT and A Level Computer Science​. Online 1:1 support available to the whole of the UK!

NEW ARRIVAL! A Complete Scheme of Work Resource for the

Level 3 BTEC IT Unit 2 Exam Parts A and B

BTEC Computing Unit 15 Complete Scheme of Work

The BTEC Computing Unit 15 Website Development is an optional unit for all certification levels from the Extended Certificate upwards

Here is a complete 35 Lesson scheme of work for the BTEC Computing Unit 15 Website Development.

The resource has been developed with a primary focus on using Notepad++ for the HTML, CSS and JavaScript with over 70 exercises, class tasks, discussion and research activities with suggested answers covering Learning Aims A, B and C for the Unit 15 Specification.

The Scheme of Work includes a brand new scenario that students can use to practice the coursework requirements for Learning Aim B and C before attempting the Assignment.

The resources include: ​Learning Aim A ​Lessons covering all specification content theory including:  • Class tasks covering the purpose and requirements of websites.  • Class tasks covering the principles of website design.  • Class Tasks on media, obejcts and the golden ratio.  • Class tasks on SEO.  • Class tasks on factors affecting website performance.  • Offline web archives of the lesson exercise websites.  • Consistent use of website examples within the lessons to promote student understanding.  • Lots of practice questions with suggested answers.

Learning Aim B Lessons covering all specification content theory including:  • How to create a problem definition statement with suggested Answers.  • How to design a website to support a given scenario with suggested Answers.  • How to review and refine website designs with suggested Answers.  • How to create a test plan for the example scenario with suggested answers.  • A new scenario with full worked answers is included for students where they can practice their design & documentation skills before attempting the assignment.  • Lessons on basic HTML including:      • Introduction to HTML       • Coding inline Styles      • HTML Navigation      • Page layout using tables      • Page layout using DIVS      • Use of multimedia      • Simple form operations   Each lesson contains numerous worked examples and suggested code solutions.

​Learning Aim C Lessons covering all specification content theory including:  • Advanced HTML, CSS and JavaScript features as detailed in the specification.  • Numerous class tasks and exercises, with suggested answers, for the use and application of CSS and JavaScript.  • A fully worked original and revised solution for the new example scenario.  • Answers for carrying out a test plan.  • How to optimise a website from testing, feedback and documentation.  • How to carry out a website review and evaluation.

Each lesson includes:  • A teacher presentation with learning objectives, lesson content and end of lesson review.  • A range of class tasks, from worked examples to discussion activities.  • Student Worksheets for all class tasks.  • Suggested answers for the class tasks to encourage and promote discussion and further learning.  • Resource links to relevant websites and videos that can be used in lesson.

Also included is a full outline Scheme of Work for all suggested 35 lessons, which includes:  • Learning objectives.  • Lesson overview.  • Assessment opportunities.  • EDI considerations.  • Homework suggestions.  • A format that can be used for SLT inspections.  • Teacher notes on resource content with suggested ideas for unit delivery

BTEC Computing Unit 15 Complete Scheme of Work

Download information.

Due to the long file names generated by the creation of offline web archive files, to ensure that the dowload extracts successfully, the file should be unpacked at a root directory location. Please see your IT department.

unit 15 website development assignment 2

My Digital Portfolio

Bartosz cichy, unit 13: website development.

Final task Overview of the unit:

In unit 13 I had to analyse all the features and uses of two different websites and how their features interact with each other. I have designed and developed a website about British Values by using a wide range of tools and techniques. I’ve been using Adobe Dreamweaver to create my web pages. I have formatted the web pages by using HTML code. Final unit grade –  Pass.

I have explained the uses and features of one dynamic and one static website: dynamic Amazon and static where I could not find any websites but I have created my own static website for this unit. I have reviewed the presentation of how it looks, usability, performance and accessibility of both websites. A final grade of the task –  Merit.

Unit 13: Assignment 1 – Two websites worksheet

Task 2 contains a description of the purpose and user requirements for my own website. I have produced three different designs for three different pages: Home page, About page and Contact page. This task also contains alternative solutions, assets used to produce the website and interactive components. The final grade for this task –  Merit.

Unit 13: assignment 2

1

I have designed and built a website with eight interactive web pages:

  • Image Gallery
  • Government Information
  • College Information

Each page contains important information about British Values or information related to them. I have also tested my website using the test plan I have created for task 2. This test is located in task 4. Final task grade – Merit.

1

In task 4 I had to explain how my final website is suitable for the intended audience and what the purpose is. Also, task 4 contains a feedback for my website review from my teacher. The feedback contains information on what I did wrong and what I could improve. I have created a separate document which includes a table with screenshots of the file structure. It also contains another table with four different issues encountered white building my website and an explanation of how I managed to fix them. Final task grade – Pass.

Assignment 4 with the test. from task 3.

Assignment 4 with four different issues and screenshots.

1

Screenshots and four issues:

1

What I need to further develop:

At the beginning I did not understand the way the Adobe Dreamweaver works. This was something completely new to me and I had learn everything from the beginning. I’ve learnt the basics structure of an HTML page and how it works. I would like to further develop my knowledge on developing websites to be able to make my future websites better and more sufficient.

Reflection of how I worked:

That was the first time I have created a website and the first time I saw the code for an online website. I can tell it was a challenge to me that I managed to do without many problems. Unfortunately I did not have much time as it was limited and short. This caused a problem where I could not create my first website the way I would actually like it to be. I wasn’t able to improve it. Overall, if I had more time I would make my website much better,  but I am proud with what I’ve done.

Share this:

' src=

  • Copy shortlink
  • Report this content
  • Manage subscriptions

Unit 15 – Software Development

This page describes creating a basic website that links to a database, allowing the user to book tables at a restaurant for a specific date. It does not cover aesthetic concerns. These can be found in the unit on website development.

It filters the list of tables offered to users so that two people can’t book the same table at the same time, and offers a ‘reservations’ view, so that a user can view their reservations.

It also implements a user/password scheme; without this, it would not be possible to log on to the site and record who was making the booking.

A couple of keywords that are important to this:

  • Session variables – a website is different to an application, in that variables cease to exist once the page is served to a user. This makes tracking things between pages difficult. The solution is to use session variables: variables that are stored on the web server, and kept between successive page requests. A separate copy of the variables is stored for each user of the website.
  • OleDb – a technology that allows any data source to be queried as if it was a database. In this example we are using an Access database as the datastore, and using OleDb to connect to it.
  • Database/persistence – you will need to use some form of database to ensure data persistence. Without it, booking details would be lost.

Project type

The information below applies to an ASP.NET WebForms project, using C#.

Structure of database

The database contains a table for each entity being tracked. For the restaurant, we are interested in: customers, tables, and bookings. Therefore we have three tables to store our data, each with a primary key. See the access file for exact details.

Default page

This is the first page that appears when the website is visited. It contains two text boxes for the username and password, and a button which the user can click in order to validate their credentials.

This page shows the user a list of all bookings they have made, which is displayed as a table within a DIV element on the page. It also contains a button which when clicked directs the user to the MAKE BOOKING page.

Make Booking

This is the most complex page; it allows the user to pick when they are looking to make a booking, and it then lists the tables available, which is the list of tables in the restaurant, but not including any that already have a booking for the current date. AutoPostback is enabled on the calendar (properties in VS), which allows the code to be run every time the date is changed, resulting in an up to date list of available tables.

The page contains a calendar item for selecting the date, and a dropdown list called DropDownList1 which is used to hold the details of the available tables.

Useful resources

Issues and implications of web coding

The request-response model

Uses, applications and implications of client side processing and scripting

Uses, applications and implications of server side processing and scripting

Web security

You may find the W3Schools website helpful if you get stuck on the HTML or CSS sections.

An HTML course for beginners.

A CSS course for beginners.

Demo project

Rename the file as a .zip file, and extract.

CSS for animation

Web technologies, ai in healthcare, cyberattacks – preying on coronavirus panic.

IMAGES

  1. Website Design and Development assignment

    unit 15 website development assignment 2

  2. Unit 05: Website Design & Development

    unit 15 website development assignment 2

  3. Unit 21- assignment 2

    unit 15 website development assignment 2

  4. Website Design & Development Assignment 2.docx

    unit 15 website development assignment 2

  5. Unit 35 Web Application Development Assignment

    unit 15 website development assignment 2

  6. Unit 15 Assignment 1 A Nation of Shopkeepers

    unit 15 website development assignment 2

VIDEO

  1. NPTEL training and development week -11 assignment 2024.@ training and development assignment 2024

  2. Remote sensing and GIS for rural development, Assignment-2 #assignment #swayam #nptel #online

  3. Chapter

  4. NPTEL week- 7 assignment 2024 training and development. @https://youtu.be/H0kemS5a12k?feature=shared

  5. nptel assignment answers|nptel soft skills

  6. Soft Skill Development assignment-5

COMMENTS

  1. Unit 15: Website Development by Colin Grey on Prezi

    Website development. Creation of interactive websites, including: use of CSS, e.g. HTML tags, CSS frameworks, box model, access CSS from HTML, doc types. use of original client-side scripting. compatibility with mobile and tablet devices. effective use of tools and techniques.

  2. Unit 15 Website development

    Unit 15 Website development; Unit 15 Website development. 2 2 documents. 0 0 questions 0 0 students. Follow this ... Ratings. U15 Assignmentt 2 - This is the second part of an assignment in the area of website development. New. 23 pages 2022/2023 None. 2022/2023 None. Save. Assignment Unit 15 1 New. 14 pages 2022/2023 None. 2022/2023 None. Save ...

  3. Unit 15 Assignment 2 Template.docx

    WEBSITE DEVELOPMENT creating a website to meet a client's needs Contents Introduction.3 Client. AI Homework Help. Expert Help. Study Resources. Log in Join. Unit 15 Assignment 2 Template.docx - WEBSITE DEVELOPMENT... Doc Preview. Pages 30. Fore School Of Management. MBA IT. MBA IT 09. JusticeSummer21492.

  4. U15 Assignmentt 2

    Assignment Unit 15 1; Event Chair Handbook jan 2017 need reviewing; Adventures of Huckleberry Finn; human nutrition; Higher Set A Paper 1; Related documents. ... Task 6 - D3 criteria; Health and social care DIL; ET 212 103343 - kramer; Preview text. UNIT 15 -ASSIGNMENT 2 WEBSITE DEVELOPMENT Contents

  5. Assignment 15.1 2021-22

    Unit or Component Number and Title: Unit 15: Website Development. Assignment Title: Assignment 1 - Website evaluation. Date Assignment Submitted: Please list the evidence submitted for each task. Indicate the page numbers where the evidence can be found or describe the nature of the evidence (e. video, illustration).

  6. BTEC Computing Unit 15 Resources

    TheComputingTutor is pleased to announce the release of a full set of Assignment resources for the Edexel BTEC Computing Unit 15 - Website Development. The resources are: - A full set of Student Guide Learning Resources for Assignment 1 and 2. - A Teacher presentation showing your students how to approach each of the Assignments.

  7. Unit 15 Assignment 2

    Unit 15 - Web Development website, and I made the image in proportion to the font size on the screen so the white spacing on screen is even. Profiles Page: On the Profiles Page, I tweaked my design slightly to make the designer fit the client requirements. The justifications I made are using Icons instead of images to make the team in Hot Beans Web and I changed the layout, instead of having ...

  8. GitHub

    Website Development . Contribute to TylerBa17/Unit-15-assignment-2 development by creating an account on GitHub.

  9. BTEC Computing Unit 15 Exemplar Website

    A full worked model Answer for the BTEC Computing Unit 15 Website Development Assignment 2. This is a full worked answer for "The Web Development Company", including 7 linked HTML pages, extensive use of CSS for styling and layout, embedded digital assets, Forms, Tables, text fields, radio buttons, Javascript validation, event handling, browser detection, alerts, dynamic DOM manipulation and ...

  10. Unit 15 Website Development notes

    Introduction to Health and Safety in Construction. Arts, Humanities and Cultures. AQA A-level History: Britain 1851-1964: Challenge and Transformation. AQA A-level History. BTEC Level 3 National Sport Book 1. Edexcel A Level History, Paper 3. Edexcel AS/A Level History, Paper 1&2. Frankenstein.

  11. PDF Rosa Rawlings Assignment 2: Designing the Website

    BTEC Level 2 Extended Certificate in Information and Creative Technology Unit 13: Website Development Assignment 2: Designing the Website Purpose: I have chosen the Essex Pet Rescue company to present designs for. The purpose of the company's website is to showcase a caring about pets, the events that will approach of the pet rescue, present

  12. Unit-15-Website-Development Assignment 1 2.docx

    BTEC Assignment Brief Qualification Pearson BTEC Level 3 National Foundation Diploma in Computing Unit number and title Unit 15: Website Development Learning aim(s) (For NQF only) A: Understand the principles of website development Assignment title Website evaluation Assessor Maria Thomas Issue date 30 th January 2023 Hand in deadline 1 st March 2023 Vocational Scenario or Context You have ...

  13. Unit 15

    Factors affecting website performance Client versus server scripts Browser compliance Server-side factors Client-side factors Section B Website design. This section of the specification deals with creating a design, adhering to client requirements and so on; this has all been covered in Unit 11 and will not be duplicated here.

  14. UNIT 15

    The Bridge Community Education Center. courses and workshops. a free and confidential information and advice service. careers advice and help with preparing for, finding and keeping work. practical support with the costs of learning, including childcare costs. volunteering opportunities. social activities and groups.

  15. BTEC Computing Unit 15 Complete Scheme of Work

    The BTEC Computing Unit 15 Website Development is an optional unit for all certification levels from the Extended Certificate upwards Here is a complete 35 Lesson scheme of work for the BTEC Computing Unit 15 Website Development. The resource has been developed with a primary focus on using Notepad++ for the HTML, CSS and JavaScript with over 70 exercises, class tasks, discussion and research ...

  16. BTEC Extended Diploma in IT

    In this video, i cover the steps and stages that should be covered in the planning and designing of a website. These stages will enable a clear direction of ...

  17. Unit 6

    Unit number and title Unit 6: Website Development Assignment 2 Learning aim(s) (For NQF only) B: Design a website to meet client requirements Assignment title Design a website Assessor Jag Johal Issue date Hand in deadline Vocational Scenario or Context You have recently joined a web development company, Hot Beans Web as a junior web developer ...

  18. PDF Unit 13: Website Development Assignment 1: Features of Websites

    Unit 13: Website Development Assignment 1: Features of Websites Introduction . I have recently started working for EN Web. They have asked me to produce a report reviewing two already existing websites; explaining what features the websites has, the strengths and weaknesses of the site and give details on the performance of the websites.

  19. Unit 6 Website Development Assignment 2 (Learning Aim B & C ...

    Essay - Unit 6 website development assignment 2 (learning aim b & c)(all criteria met ) Show more . More courses for PEARSON (PEARSON) > Information Technology 2016/2017 NQF. Unit 3 - using social media in business ; Unit 4 - programming ; Unit 9 - it project management ...

  20. Unit 13: Website Development

    Unit 13: assignment 2. Task 3: I have designed and built a website with eight interactive web pages: Each page contains important information about British Values or information related to them. I have also tested my website using the test plan I have created for task 2. This test is located in task 4.

  21. Website Development Assignment 1

    Website Development Assignment 1. Web Dev 1 fully completed at DISTINCTION level. Module. Digital Technology. 83 Documents. Students shared 83 documents in this course. ... Programming Assignment Exp 2; Unit 1 Online World - QTAG Evidence; Mobile Apps Assignment 2; Animation Assignment Document 2; Digital Portfolio 3 assignment;

  22. Unit 15

    Unit 15 - Software Development. This page describes creating a basic website that links to a database, allowing the user to book tables at a restaurant for a specific date. It does not cover aesthetic concerns. These can be found in the unit on website development. It filters the list of tables offered to users so that two people can't book ...

  23. Unit 15.1 assignment

    The performance of a website is influenced by a variety of things. For example, the website may take some time to run scripts, which may have an influence on the website's performance since it will load slowly or not at all. If a website does not reply promptly, a corporation like Nike or Adidas may lose money.