-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 983 Bytes
/
index.html
File metadata and controls
33 lines (29 loc) · 983 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
31
32
33
<!doctype html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script src="./bundle.js"></script>
</head>
<body>
<span>this is a test</span>
<select-field placeholder="choose...">
<select-option value="NY">New York</select-option>
<select-option value="CA">California</select-option>
<select-option>AL</select-option>
<select-option selected>RE</select-option>
<select-option>WA</select-option>
<select-option>A Really long option - WA</select-option>
</select-field> here is some text after
<div>...</div>
<span>this is a test</span>
<!-- <select-field placeholder="choose...">
<select-option>NY</select-option>
<select-option>CA</select-option>
<select-option>AL</select-option>
<select-option>RE</select-option>
<select-option>WA</select-option>
<select-option>A Really long option - WA</select-option>
</select-field> here is some text after
-->
</body>
</html>