Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html>
<head>
<title>My Favorite City</title>
<link rel="stylesheet" type="text/css" href="main.css" />
</head>
<body>
<h1 id="title">New York City</h1>
<h2 style="color: green;">Fun Attractions:</h2>
<ul>
<li>Central Park</li>
<img width="600" height="300" src="https://www.planetware.com/photos-large/USNY/new-york-city-central-park-lake-bridge-boats.jpg" />
<li>Broadway</li>
<img width="600" height="300" src="https://www.planetware.com/photos-large/USNY/new-york-city-broadway.jpg" />
<li>Statue of Liberty</li>
<img width="600" height="300" src="https://www.planetware.com/photos-large/USNY/new-york-city-statue-of-liberty.jpg" />
</ul>
<h2 style="color: green;"></h2>
<h2 style="color: green;">Guide to Visiting New York City:</h2>
<a href="https://www.nycgo.com/?cid=twitter">Visting New York City</a>
<h2>What's your favorite city?:</h2>
<form>
<fieldset>
<span>City name: </span><input id="city-nm" type="text" /><br>
<label for="today-date">Enter today's date:</label>
<input type="date" id="today-date"><br>
<input type = "checkbox" id = "subscribe">
<label for="subscribe">Receive Notifications</label><br>
<input id="submit-btn" type="button" value="Submit" onclick="buttonClick()"/>
<input id="reset-btn" type="reset" value="Reset" />
</fieldset>
</form>
<script src="index.js" />
</body>
</html>