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 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

+ +
+
+

Contact Us

+

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

+
+
+ + + \ No newline at end of file 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 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");