-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (86 loc) · 4.63 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<header>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Wrap It</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<link rel="stylesheet" href="style.css"/>
</header>
<body>
<div class="row" id="title-row">
<!-- <div class="col-md-1">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcQ71NcfJZkE64Bmgm4FlXP1xoBmKc6GFUPJCQ&usqp=CAU" height="50px" weidth="50px" alt="logo"/>
</div> -->
<div class="col-md-12" id="title">
<h1 class="text-uppercase">Wrap It<a href="https://medium.com/@eve.reichmann" target="_blank"><img id="img" src="./images/blogger-4-128.png" height="40px" width="40px" /></a><a href="https://github.com/evereichmann" target="_blank"><img id="img" src="./images/github-10-128.png" height="40px" width="40px" /></a><a href="https://www.linkedin.com/in/eve-reichmann-a252501b2" target="_blank"><img id="img" src="./images/linkedin-3-128.png" height="35px" width="35px" /></a></h1>
</div>
</div>
<div id="main-container">
</br>
<div class="row" id="information-bar">
<div id="about-me" class="col-md-5">
<h3 class="text-uppercase">About</h3>
</br><p>Who wants to buy an entire roll of paper for a small present. </br>You can make a custom wrapping paper in this application.</br> Super easy, super fun, and super free! Just follow the step to </br>the right and you are good to go!</br></br><bold>Thanks for using Wrap It!</bold></p></br></br>
</div>
<div id="instructions" class="col-md-6">
<h3 class="text-uppercase">Instructions</h3>
<ol>
<li>Select a layout and hit the submit button</li>
<li>Layout One </li>
<ul>
<li>Go to the web, find an image, and get the image url</li>
<li>Write a short text input (we are working on a text wrapping funcation at the moment)</li>
</ul>
<li>Layout Two</li>
<ul>
<li>Go to the web, find two images, and get the images url</li>
</ul>
<li>Press submit!</li>
<li>If you want to change the wrapping paper hit clear make your changes and submit again</li>
<li>Copy and Paste the image into any text document and print</li>
</ol>
</div>
</div>
</br>
<div class="row">
<div class="col-md-12">
<div id="forms">
<div id="first-form">
<form class="form-inline">
</br>
<!-- <label for="wrapping-paper-name">Wrapping Paper Name</label>
<input id="wrapping-paper-name" type="text"></input> -->
<label for="layout"></label>
<select name="layout" id="wrapping-paper" class="form-control">
<option value="">Select a Layout</option>
<option value="1">One Image & Text</option>
<option value="2">Two Images</option>
<!-- <option value="3">Mercedes</option>
<option value="4">Audi</option> -->
</select>
<button type="submit" class="btn btn-success">submit</button>
</form>
</div>
</br>
<div id="second-form">
</div>
</div>
<div id="canvas-container">
<canvas id="myCanvas" width="600" height="800"></canvas>
</br>
</br>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="src/index.js" defer></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous" defer></script>
</body>
<footer id="footer">
<p>copyright © 2020</p>
</footer>
</html>