Create a website. You must create two pages that allow to register College stude
ID: 672733 • Letter: C
Question
Create a website.
You must create two pages that allow to register College students in an activity (theater, hiking, painting, yoga). • Each page should contain the logo of College Hypertext links must be present to access the pages .
Page 1:
It has been several years that you offer your trust by subscribing to the various activities of the association. We want the best for you, dear students, so that you are fully satisfied. And that’s why our association improve more and more each year in improving innovation and especially sports and cultural activities.
Page 2:
You must use a table.
The box "I want to be a member of the association" should be checked by default. When the user clicks on “Validate my registration”, a confirmation page will notify the user that his registration has been taken into account
Explanation / Answer
there are three files page1.html, page2.html,confirm.html , put them into Same Folder, Also Include a logo.jpg (Picture of Logo of School) in the same folder
copy content into three different files with given name.
================================
*****************************************************************
//Page1.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Page1</title>
</head>
<body>
<nav>
<img src="logo.jpg" alt="College Logo">
<a href="page1.html">Page1</a>
<a href="page2.html">Page2</a>
</nav>
<main>
<div id="outer">
<h2> It has been several years that you offer your trust by subscribing to the various activities of the association. We want the best for you, dear students, so that you are fully satisfied. And that’s why our association improve more and more each year in improving innovation and especially sports and cultural activities.</h2>
</div>
</main>
</body>
</html>
********************************************
-============================
//page2.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Page2</title>
<script>
function callSubmit()
{
window.location.href="confirm.html"
}
</script>
</head>
<body>
<nav>
<img src="logo.jpg" alt="College Logo">
<a href="page1.html">Page1</a>
<a href="page2.html">Page2</a>
</nav>
<main>
<div id="outer">
<h2>Click on Activity</h2>
<form>
<input type="checkbox" name="theater" value="theater">theater<br>
<input type="checkbox" name="hiking" value="hiking" > hiking<br>
<input type="checkbox" name="painting" value="painting" > painting<br>
<input type="checkbox" name="yoga" value="yoga" > yoga<br>
<input type="checkbox" name="register" value="register" checked> I want to be a member of the association<br>
</form>
<button>Submit</button>
</div>
</main>
</body>
</html>
************************************************
================================
//confirm.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Confirmation</title>
</head>
<body>
<nav>
<img src="logo.jpg" alt="College Logo">
<a href="page1.html">Page1</a>
<a href="page2.html">Page2</a>
</nav>
<main>
<div id="outer">
Your Registration is Completed
<a href="page1.html">Return to Home Page</a>
</div>
</main>
</body>
</html>
***************************************************
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.