This is a Celsius thermometer made with D3.js. The thermometer makes use of weather data from the Open Weather Map project.
xxxxxxxxxx
<head>
<meta charset="utf-8">
<title>Open Weather Map Thermometer</title>
<script src="d3.v3.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Search for a city</h1>
<form id="cityInputForm">
<label for="cityInput">City name:</label>
<input id="cityInput" name="name" value="London, GB">
<input type="submit" value="Search">
</form>
<br/>
<section>
<article class="therm">
</article>
</section>
<script src="vis.js"></script>
</body>