How do i redirect this page
Computer Science
How do i redirect this page
<!DOCTYPE html>
<html>
<head>
<!--
Author:
Date: 3/24/2022
Filename: welcome.html-->
<meta charset="utf-8" />
<title>Spidey</title>
</head>
<body>
<header>
<h1>This site has been redesigned....because we broke during our last fight...</h1>
</header>
</body>
<img src="screen-10.webp"/>
</html>
To this one
<!DOCTYPE html>
<html>
<head>
<!--
Author:
Date: 3/24/2022
Filename: new.html-->
<meta charset="utf-8" />
<title>Friendly Country</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="sched.html">schedule</a></li>
<li><a href="bio.html">bio</a></li>
<li><a href="feed.html">feedback</a></li>
</header>
<article>
<h1>From friendly neighborhood to the whole country</h1>
<p><strong>Spider-Man</strong> knows about responsibility. He is ready to
be responsible for us all.</p>
</body>
<img src="chest.jpg"/>
</html>
Step by step
Solved in 2 steps with 3 images