From 47b0654a1045bd7410d132fb467759c69d0d05ac Mon Sep 17 00:00:00 2001 From: alexandrabuildingU Date: Sat, 5 Apr 2025 22:44:08 -0700 Subject: [PATCH 1/3] Exercise1 and Exercise2 --- Exercise_1/exercise1.html | 69 +++++++++++++++++++ Exercise_2/exercise2.html | 137 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 206 insertions(+) create mode 100644 Exercise_1/exercise1.html create mode 100644 Exercise_2/exercise2.html diff --git a/Exercise_1/exercise1.html b/Exercise_1/exercise1.html new file mode 100644 index 00000000..fc1e580a --- /dev/null +++ b/Exercise_1/exercise1.html @@ -0,0 +1,69 @@ + + + + + + Exercise 1: HTML Building-U + + + +

Exercise 1: HTML Building-U

+

Date of Submission: April 6, 2025

+ +

Favorite Movies, Music, and Videos

+ + + + + + + + + + + + + + + + +
First NameLast NameFavorite Movie ImageFavorite Music Audio SampleFavorite Video Sample
AlexandraPopusoiIndiana Jones
+ +

Feedback Form

+
+
+

+ +
+

+ +
+

+ +
+ Monday
+ Tuesday
+ Wednesday
+ Thursday
+ Friday

+ +
+

+ +
+ Yes
+ No

+ +
+

+ + + +
+ + + \ No newline at end of file diff --git a/Exercise_2/exercise2.html b/Exercise_2/exercise2.html new file mode 100644 index 00000000..05af3030 --- /dev/null +++ b/Exercise_2/exercise2.html @@ -0,0 +1,137 @@ + + + + + + SkillsUSA California State Event + + + + +

SkillsUSA California State Event 2025

+

Date: April 20-22, 2025

+ +

Event Details

+

Join us for the annual SkillsUSA California State Event, where students from across the state will showcase their skills in various competitions. This event promotes career and technical education and provides students with the opportunity to exhibit their talents and gain recognition.

+ +

Location

+

The event will take place at:

+

California State University, Sacramento
+ 6000 J St, Sacramento, CA 95819

+ +

Timings

+ + + + + + + + + + + + + + + + + + + + + +
DayEventTime
April 20Opening Ceremony10:00 AM - 12:00 PM
April 21Competitions9:00 AM - 5:00 PM
April 22Awards Ceremony1:00 PM - 3:00 PM
+ +

Who's Invited

+

All students, teachers, and industry professionals are invited to attend. Come and support our talented participants!

+ +

Contact Information

+

If you have any questions, please contact:

+

Alexandra Popusoi
+ Email: trainer@skillsusa.org
+ Phone: (555) 113-4667

+ +

Event Highlights

+

Check out this video to learn more about SkillsUSA:

+ + +

Audio Message

+

Listen to a message from our event coordinator:

+ + +

Feedback Form

+
+ + + + + + + + + + +
+ + + \ No newline at end of file From 8efb2153818730ae619a2d3f5643bf7c41d676fe Mon Sep 17 00:00:00 2001 From: alexandrabuildingU Date: Sat, 17 May 2025 10:35:25 -0700 Subject: [PATCH 2/3] Added Exercises 3,4,5 --- Exercise_3/index 5.html | 140 ++++++++++++++++++++++++++++++++++++++++ Exercise_4/index 6.html | 105 ++++++++++++++++++++++++++++++ Exercize_5/script.js | 36 +++++++++++ 3 files changed, 281 insertions(+) create mode 100644 Exercise_3/index 5.html create mode 100644 Exercise_4/index 6.html create mode 100644 Exercize_5/script.js diff --git a/Exercise_3/index 5.html b/Exercise_3/index 5.html new file mode 100644 index 00000000..fde87f05 --- /dev/null +++ b/Exercise_3/index 5.html @@ -0,0 +1,140 @@ + + + + + + Portfolio - BuildingU + + + + + + + + + + +
+

Welcome to My Portfolio

+

Discover my projects and skills in web development.

+ View My Work +
+ + +
+
+
+
+ Profile +
+
+

About Me

+

I'm a passionate web developer with a knack for building responsive and user-friendly websites.

+
Key Skills:
+
    +
  • HTML, CSS, JavaScript
  • +
  • Bootstrap, React, Node.js
  • +
  • Responsive Design
  • +
+
+
+
+
+ + +
+
+

My Projects

+
+ +
+
+ Project 1 +
+
My building-U projects
+

Unfortantely, I don't have any Building-U projects-YET! Check back later!.

+ +
+
+
+ + + +
+
+
+ + +
+
+

Contact Me

+
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+ + + + + + + \ No newline at end of file diff --git a/Exercise_4/index 6.html b/Exercise_4/index 6.html new file mode 100644 index 00000000..c1772874 --- /dev/null +++ b/Exercise_4/index 6.html @@ -0,0 +1,105 @@ + + + + + + Marvel Movies + + + +
+

Welcome to Marvel Movies

+
+
+
+

About Marvel

+

Marvel Entertainment is known for its superhero comics and films, featuring iconic characters like Spider-Man, Iron Man, and the Avengers.

+
+
+

Featured Movies

+
    +
  • The Avengers (2012)
  • +
  • Black Panther (2018)
  • +
  • Spider-Man: No Way Home (2021)
  • +
  • Guardians of the Galaxy (2014)
  • +
  • Doctor Strange (2016)
  • +
+
+
+

Contact Us

+

For more information, reach out to us at info@marvelmovies.com.

+
+
+
+

© 2023 Marvel Movies

+
+ + \ No newline at end of file diff --git a/Exercize_5/script.js b/Exercize_5/script.js new file mode 100644 index 00000000..02c48045 --- /dev/null +++ b/Exercize_5/script.js @@ -0,0 +1,36 @@ +function formValidator(firstName, lastName, age, phoneNumber) { + + const inputs = [ + { name: "First Name", value: firstName, type: "string" }, + { name: "Last Name", value: lastName, type: "string" }, + { name: "Age", value: age, type: "number" }, + { name: "Phone Number", value: phoneNumber, type: "string" } + ]; + + + for (let input of inputs) { + if (input.value === undefined || input.value === null || input.value === "") { + console.log(`The ${input.name} input is missing.`); + return; + } + } + + + for (let input of inputs) { + if (typeof input.value !== input.type) { + console.log(`The ${input.name} should be a ${input.type}.`); + return; + } + } + + + if (age < 18) { + console.log("Sorry, not old enough for our app."); + return; + } + + + console.log("WELCOME TO THE ADOS APP."); +} + +formValidator("Jane", "Doe", 25, "123-456-7890"); From 6065d9720780b5daf3c889e71dcbe7a5ed34c1af Mon Sep 17 00:00:00 2001 From: alexandrabuildingU Date: Fri, 23 May 2025 20:40:31 -0700 Subject: [PATCH 3/3] Exercise 6 submission --- Exercise_6/api.html | 32 ++++++++++++++++++++++ Exercise_6/details.html | 59 +++++++++++++++++++++++++++++++++++++++++ Exercise_6/index6.html | 37 ++++++++++++++++++++++++++ 3 files changed, 128 insertions(+) create mode 100644 Exercise_6/api.html create mode 100644 Exercise_6/details.html create mode 100644 Exercise_6/index6.html diff --git a/Exercise_6/api.html b/Exercise_6/api.html new file mode 100644 index 00000000..e5fc53d4 --- /dev/null +++ b/Exercise_6/api.html @@ -0,0 +1,32 @@ + + + + + + API App + + + +

Random User Generator

+ +
+ + + + \ No newline at end of file diff --git a/Exercise_6/details.html b/Exercise_6/details.html new file mode 100644 index 00000000..d794bc83 --- /dev/null +++ b/Exercise_6/details.html @@ -0,0 +1,59 @@ + + + + + + Employee Entry App + + + +

Employee Entry

+ + + + + +
+ + + + \ No newline at end of file diff --git a/Exercise_6/index6.html b/Exercise_6/index6.html new file mode 100644 index 00000000..b82a8c96 --- /dev/null +++ b/Exercise_6/index6.html @@ -0,0 +1,37 @@ + + + + + + Form Validator App + + + +

Form Validator

+ + + + +
+ + + + \ No newline at end of file