Skip to content

iserviceweb/product_web_page

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Build a Product Web Page

Instructions:

Objective: Build an app that is functionally similar to the demo GIF below.

demo gif

User Stories:

  1. Your product web page should have a header element with a corresponding id="header".
  2. Within the header element, add an img element with a corresponding id="header_img" (You can add a logo image for your product)
  3. Within the header element, add a nav element with a corresponding id="nav_bar"
  4. Within the nav element, add three clickable elements, each with the class="nav_link".
  5. Each .nav_link button in the nav element should take you to the corresponding section of the web page. (also known as jump links on a webpage)
  6. Add an embedded product video with id="video" somewhere on the page.
  7. Add a form element with a corresponding id="form".
  8. Within the form element, there is an input field with id="name" for entering users name.
  9. Within the form element, there is an input field with id="email" for entering email addresses.
  10. The email & name input field should have placeholder text to inform users of that field.
  11. The email input field uses HTML5 validation to confirm the text is an email address.
  12. Within the form element, there is a submit input with a corresponding id="submit".
  13. The email is submitted to a static page (use this mock URL: https://www.radicalx.co)
  14. CSS: The nav should always be at the top of the viewport.
  15. CSS: Your product web page should have at least one media query.
  16. CSS: Your product web page should utilize CSS flexbox at least once.