-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 981 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Formsite Form Selector</title>
<link rel="stylesheet" href="custom-element.css" />
<link rel="stylesheet" href="formsite-selector.css" />
<!-- Kentico Custom elements API-->
<script src="https://app.kontent.ai/js-api/custom-element/v1/custom-element.min.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="formsite-selector.js"></script>
</head>
<body>
<div class="selector">
<select
id="dropdown"
class="form__dropdown"
onchange="formSelected(this.value)"
>
<option value="" selected disabled>Select a form</option>
</select>
<img
class="logo"
src="formsite_logo.png"
alt="Formsite"
title="Formsite"
/>
</div>
<div class="spacer"></div>
<div class="title">
<div class="text"></div>
</div>
</body>
</html>