-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
104 lines (81 loc) · 3.71 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
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--Style Sheets-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.2/css/bulma.min.css"
integrity="sha512-byErQdWdTqREz6DLAA9pCnLbdoGGhXfU6gm1c8bkf7F51JVmUBlayGe2A31VpXWQP+eiJ3ilTAZHCR3vmMyybA=="
crossorigin="anonymous" />
<link rel="stylesheet" href="assets/styles/style.css" />
<!--title-->
<title>Swanson Dreams</title>
</head>
<body>
<!----------Main--------------------->
<main class="section">
<div class="container">
<!--Hero Section-->
<section class="hero">
<div class="hero-body">
<p class="title">SWANSON DREAMS</p>
<p class="subtitle">Dream Analyzer</p>
</div>
</section>
<!------------Instructions for user---------->
<div id="introBox" class="box">
<p id="instructions" class="instructions">
<H1> Welcome to Swanson Dreams</H1>
<p> Ever wonder what Ron Swanson would say about your dreams?</p>
<p> Enter your dream in the box below to find out!</p>
<p> Make sure to enter at a dream that is at least 25 characters</p>
</p>
</div>
<!-----------------user input box------------------------------------>
<div id="userBox" class="box">
<textarea id="textArea" class="textarea"
placeholder="Enter your dream here for Ron to evaluate for you!" rows="3"></textarea>
<div class="buttons">
<button class="button is-primary"> Submit </button>
</div>
<!-- -----------------Alert Modal----------------- -->
<div class="modal" id="characterAlert">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Hold On!</p>
</header>
<section class="modal-card-body">
Any dream under 25 characters is a Veggie Burger, and Veggie Burgers are useless. Make it at
least
25 characters, preferably including Bacon.
</section>
<footer class="modal-card-foot">
<button id="okayBtn" class="button is-success">Okay</button>
</footer>
</div>
</div>
</div>
<!-----------new Quote - Ron Quote Returned------------------->
<div id="ronBox" class="box content">
<h3 id="ronSays"></h3>
<h2 id="ronQuote"></h2>
<img src="assets/images/nickoffermanpr.jpeg" />
</div>
<!---------------Local Storage Cards -------------------->
<div class="box" id="cardContainer">
<h2 class="title">Previous Entries</h2>
</div>
</div>
<!----------Footer Section----------->
<footer class="footer">
<div class="content has-text-centered">
<p><strong>Swanson Dreams</strong> Made by Us</p>
<button id="clearBtn" class="button is-warning">Clear Local Storage</button>
</div>
</footer>
<!--js assets-->
<script src="assets/JS/script.js"></script>
</body>
</html>