forked from somtobking/DreamStream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·91 lines (79 loc) · 3.94 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
89
90
91
<!DOCTYPE html>
<html>
<title>CSE 4345 Project</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet" type="text/css">
<!-- Go to http://getbootstrap.com/ and scroll down to Bootstrap CDN. Add CSS reference here. -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<!-- Add Boostrap's CDN JS references here. -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<body>
<!-- !PAGE CONTENT! -->
<div class="w3-content" style="max-width:1500px">
<!-- Header -->
<header class="w3-container w3-xlarge w3-padding-24">
<a href="#" class="w3-left w3-button w3-white">CSE 4345</a>
<a href="#about" class="w3-right w3-button w3-white">Project</a>
</header>
<!-- Photo Grid -->
<div class="w3-row">
<div class="w3-half">
<img src="streetart2.jpg" style="width:100%">
<img src="image.jpg" style="width:100%">
</div>
<div class="w3-half">
<img src="deadmau5-ravejungle.jpg" style="width:100%">
<img src="image4.jpg" style="width:100%" height= 469>
</div>
</div>
<!-- End Page Content -->
</div>
<!-- Footer / About Section -->
<footer class="w3-light-grey w3-padding-64 w3-center" id="about">
<h2>Overview</h2>
<img src="DreamStream.png" class="w3-image w3-padding-32" width="400" height="4 00">
<form style="margin:auto;width:60%" action="/action_page.php" target="_blank">
<p>Deep Dream: DeepDream is a computer vision program created by Google engineer Alexander Mordvintsev which uses a convolutional
neural network to find and enhance patterns in images via algorithmic pareidolia, thus creating a dream-like hallucinogenic
appearance in the deliberately over-processed images.</p>
<p class="w3-large w3-text-red">Dream Stream: Engineered from deep dream to give you a great
user experience and more.. visuals like you've never seen.
</p>
<h4>Complete form below to enter</h4>
<div class="w3-section">
<label>
<b>Name</b>
</label>
<input class="w3-input w3-border" type="text" required name="Name">
</div>
<div class="w3-section">
<label>
<b>Email</b>
</label>
<input class="w3-input w3-border" type="text" required name="Email">
</div>
<form action="upload.php" method="post" enctype="multipart/form-data">
Select image to upload:
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Upload Image" name="submit">
</form>
<br>
<button type="button" class="btn btn-success">
<a href="file:///Users/somto/Desktop/SMU/CSE%204345/Project/Codes/DreamStream/submitted.html">Submit</a>
</button>
</form>
</br>
<footer>
All rights reserved. Property of Dream Stream
</footer>
</body>
</html>