21 lines
629 B
HTML
21 lines
629 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="refresh" content="0; url=https://www.google.com">
|
|
<title>Redirecting to Application</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="menu-icon" onclick="toggleMenu()">☰</div>
|
|
<nav>
|
|
<ul id="nav-list">
|
|
<li><a href="home.html">Home</a></li>
|
|
<li><a href="application.html">Application</a></li>
|
|
<li><a href="contacts.html">Contacts</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<p>If you are not redirected, <a href="https://www.google.com">click here</a>.</p>
|
|
</body>
|
|
</html>
|