Browser.html

A Real Working Browser

by Daniel Hall

HTML

<!DOCTYPE html>
<html>
<head>

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,
initial-scale=1, maximum-scale=1">
</meta> </head>
<body align="center" onkey=“document.getElementById(‘b’)
.style.color: purple;
document.getElementById(‘h2’)
.style.color: green;” onclick=“document.getElementById(‘b’)
.style.color: red;
document.getElementById(‘h2’)
.style.color: blue;”>
<a href=“mailto:“ target=“_blank”>Email</a>
<h2 id=“h2”>Dansive</h2>
<b id=“b”>s</b>
<b id=“b”>e</b>
<b id=“b”>a</b>
<b id=“b”>r</b>
<b id=“b”>c</b>
<b id=“b”>h</b>
<form align="center" action="https://www.google.com/search" mode="POST">
<input type="text" name="q"><br /><input type="submit" value="Search" />
<style>
h2 {font-family: Arial Black; font-size: 3em;}
b {font-family: Arial Black; font-size: 3.2em;}
a {position: absolute; font-family: Arial Black; left: 0%; top: 0%;}
input {font-size: 1.3em; width: 25%; height: 7%; text-align: center;}
</style>
</form>
</body>
</html>