flexi-flux is a fullscreen iframe implementation compatible with all modern mobile and desktop HTML5 browsers i.e. Mozilla; Webkit; Chrome.
duckduckgo is an anonymous search engine and is used in this example found at https://duckduckgo.com
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>minimal flux</title> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=no”> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
</head> | |
<body> | |
<iframe src="https:/duckduckgo.com/" border="0" seamless="seamless"></iframe> | |
</body> | |
</html> |
flexi-flux is a fullscreen iframe implementation compatible with all modern mobile and desktop HTML5 browsers i.e. Mozilla; Webkit; Chrome.
duckduckgo is an anonymous search engine and is used in this example found at https://duckduckgo.com
html, body, div, iframe { | |
margin:0; | |
padding:0; | |
height:100%; | |
} | |
iframe { | |
display:block; | |
width:100%; | |
border:none; | |
} |