antds/javascript-wonderland
0
1 2<!DOCTYPE html>3<html>4<head>5 <title>Weather</title>6 <link rel="icon" href="/img/weather.png">7 <link rel="stylesheet" href="/css/styles.css">8</head>9<body>10 <div class="main-content">11 {{>header}}12 <p>Use this site to get your weather!</p>13 <form>14 <input placeholder="Location">15 <button>Search</button>16 </form>17 <p id="message-1"></p>18 <p id="message-2"></p>19 </div>20 {{>footer}}21 <script src="/js/script.js"></script>22</body>23</html>24 