kobo_webportal/html/index.html

54 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../css/index.css">
<title>Portal</title>
</head>
<body>
<img src="../res/rakobo.png" alt="Kobo logo">
<h2>
<img src="../res/mdi/magnify.svg" alt="Magnify icon">
Search
</h2>
<form action="https://duckduckgo.com/" method="get">
<hr>
<input type="search" name="q" placeholder="Search DuckDuckGo">
<button type="submit">
<img src="../res/mdi/magnify.svg" alt="Magnify icon">
Search
</button>
</form>
<h2>
<img src="../res/mdi/web.svg" alt="Web icon">
Pick-a-site
</h2>
<div>
<hr>
<button onclick="window.location.href='https://google.com/'">
<img src="../res/mdi/google.svg" alt="Google logo">
Google
</button>
<button onclick="window.location.href='https://duckduckgo.com/'">
<img src="../res/mdi/duck.svg" alt="Duck logo">
DuckDuckGo
</button>
<button onclick=" window.location.href='https://nl.wikipedia.org/'">
<img src="../res/mdi/wikipedia.svg" alt="Wikipedia logo">
Wikipedia NL
</button>
</div>
</body>
<footer>
Powered by ARNweb
</footer>
</html>