Skip to content

Instantly share code, notes, and snippets.

@leovarmak
Created September 9, 2018 14:54
Show Gist options
  • Save leovarmak/63ea469995559eb058b66b57cd33f848 to your computer and use it in GitHub Desktop.
Save leovarmak/63ea469995559eb058b66b57cd33f848 to your computer and use it in GitHub Desktop.
androidify
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Max</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="vanilla.js"></script>
<script src="biomp.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
<style>
html, body {margin: 0; height: 100%; overflow: hidden}
/* .website-details{
float: left, top;
} */
/* #preview{
float: right ;
} */
.header {
background-color: blue;
/* text-align: center; */
padding: 5px;
}
</style>
</head>
<body>
<div class="header"><p>Logo Here</p></div>
<br><br>
<div class="website-details" align="center">
<form class="pure-form pure-form-aligned">
<fieldset>
<div class="pure-control-group">
<label for="name">Website Name:</label>
<input id="name" type="text" placeholder="website name" class="pure-input-1-3">
<!-- <span class="pure-form-message-inline">This is a required field.</span> -->
</div>
<div class="pure-control-group">
<label for="url">Website URL:</label>
<input id="url" type="text" placeholder="http://example.com" class="pure-input-1-3">
</div>
<div class="pure-control-group">
<label for="email">Email Address</label>
<input id="email" type="email" placeholder="Email Address" class="pure-input-1-3">
</div>
<div class="pure-controls">
<label for="cb" class="pure-checkbox">
<input id="cb" type="checkbox"> I've read the terms and conditions
</label>
<button type="submit" class="pure-button pure-button-primary">Submit</button>
</div>
</fieldset>
</form>
</div>
<!-- <div id="preview"></div> -->
</body>
<!-- <script>
bioMp(document.getElementById('preview'), {
url: 'https://www.m2mblue.com/',
view: 'front',
image: 'images/pixel.png'
});
</script> -->
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment