Skip to content

Instantly share code, notes, and snippets.

@imSrbh
Created November 10, 2018 12:01
Show Gist options
  • Save imSrbh/720463702cb0eb8a1842fa7aa341bdbc to your computer and use it in GitHub Desktop.
Save imSrbh/720463702cb0eb8a1842fa7aa341bdbc to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<body background="b.jpg">
<head>
<meta charset="utf-8">
<style>
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing:content-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
input[type=submit] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}
.container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
</style>
<title>Image Generation</title>
</head>
<body>
<span _ngcontent-c11="" class="heading-font">YOUR TICKET</span>
<h1 align="center">Query Based Image Synthesis Using GANs</h1>
<div class="container">
<p>Dataset Selection to Generate Images?</p>
<label for="cc">Birds Dataset:</label>
<input type="radio" name="" id="cc" value="yesOver">
<label for="b">BedRoom Dataset:</label>
<input type="radio" name="" id="b" value="noOver">
<label for="c">COCO Dataset:</label>
<input type="radio" name="" id="c" value="noOver">
<h2>Or</h2>
<p>Dataset Selection to Generate Images?</p>
<select name="dataset">
<option value="cc">Birds Dataset</option>
<option value="b">BedRoom Dataset</option>
<option value="c">COCO Dataset</option>
</select>
<p></p>
<form >
<label for="q">Enter the text Query to Generate the images</label>
<input type="text" id="q" name="inputquery" placeholder="Enter the Query" >
</label>
<center><input type="submit" ></center>
</form>
</div>
<div class="container">
<center><img src= "bck.jpeg" class="centerImage" ></center>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment