Created
September 5, 2019 19:52
-
-
Save pavelzag/c1bdaf1caf416c2b20ff704e8e25fbf2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<center> | |
<h4>Select a city</h4> | |
</center> | |
<center> | |
<select name="City Name" id="city"> | |
<center> | |
<option value="New York City">New York City</option> | |
<option value="Amsterdam">Amsterdam</option> | |
<option value="Berlin">Berlin</option> | |
<option value="London">London</option> | |
<option value="Tel Aviv">Tel Aviv</option> | |
</select> | |
</center> | |
<br> | |
</center> | |
</br> | |
<center><button type="button">Click Me!</button></center> | |
</body> | |
<script src="jquery-3.4.1.min.js"></script> | |
<script src="popup.js"></script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment