-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
30 lines (29 loc) · 752 Bytes
/
about.html
File metadata and controls
30 lines (29 loc) · 752 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>This is a Mess</title>
<style type="text/css">
.box{
border: 3px solid black;
width: 400px;
height: 200px;
}
.selectorPosition{
width: 100px;
}
</style>
</head>
<body>
<div class = "box">
<h2>Choose a Life Event to Share</h2>
<form name="LifeEvent" action="{{ url_for('getAd') }}" method="POST" class=new-task>
<select name="Events" class = "selectorPosition">
<option value="marriage">Marriage</option>
<option value="baby">Baby</option>
<option value="house">House</option>
</select>
<button type = "Submit">Choose!</button>
</form>
</div>
</body>
</html>