Skip to content

DSC-RIT/Frontend-Web-Workshop-2021

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Assignments for Web Work Shop

Recordings:

JS Presentation Slides: https://docs.google.com/presentation/d/16Pq84TNSjaefU16gBg56R1QCDSpdATZ4aIkCyte82OY/edit#slide=id.gf0b6c11d21_0_115

HTML

  1. Create a google forms clone
  2. Create Gallery of images for website
  3. Create Contact form for website

CSS

  1. Style Gallery of images for website
  2. Style contact form for website

Javascript

  1. Create an array of objects specifying whether the numbers are prime or not using Array.prototype.map function, using a given input array. Example :
    Input : [2,3,4,5]
    Output:
    {
    2 : “prime”,
    3 : “prime”,
    4 : “composite”,
    5 : “prime”
    }

  2. In the website’s gallery section, change the image that is clicked on to a new image using click event. You can choose any image.

  3. In the website’s gallery section, change the image that is hovered over using mouseenter and mouseleave events. You can choose any image.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • HTML 70.1%
  • CSS 29.9%