Merge with exercise project

This commit is contained in:
2018-04-06 22:14:46 +05:30
parent a76906b741
commit 46b7155d6b
12 changed files with 7038 additions and 1 deletions
+41
View File
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>
<head>
<title>Canvas</title>
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<!-- side pane -->
<div class="sidepane col-sm-2 col-md-2 col-lg-2">
<div class="form">
<h3>Form</h3>
<input type="file" class="form-control" placeholder="Upload Your Images" name="upload">
<button id="submit" class="btn btn-default">upload</button>
<!-- Upload Form here -->
</div>
<hr />
<div class="assets">
<h3>Assets</h3>
<div class="text">
<h4>Text</h4>
<button id="addText" class="btn btn-default">Add Text</button>
</div>
<div class="image">
<h4>Images</h4>
<ul class="list-unstyled">
<!-- List of images here -->
<!-- <li><img src="images/sample.jpeg" class="img-rounded" /></li> -->
</ul>
</div>
</div>
</div>
<!-- canvas -->
<div class="canvas col-sm-8 col-md-8 col-lg-8">
<div class="block">
<!-- Add images and texts to here -->
</div>
</div>
</body>
</html>