-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (60 loc) · 2.83 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<title>W3 Weather</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Camilo Garcia La Rotta">
<meta name="description" content="World Wide Weather visualizer">
<meta name="theme-color" content="#72a0ea">
<meta property="og:title" content="w3 weather visualizer">
<meta property="og:site_name" content="w3 weather visualizer">
<meta property="og:description" content="World Wide Weather visualizer">
<meta property="og:type" content="website">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="250">
<meta property="og:image:height" content="250">
<meta property="og:image" content="https://camilogarcialarotta.github.io/w3-weather/images/cloud.png">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,500,700" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
</head>
<body>
<header>
<h1>W3 Weather</h1>
<h2>meteorological visualizer</h2>
<form class="js-city-form">
<input type="text" class="js-city-name" name="city-name" placeholder="Enter a city" autofocus>
<br>
<input type="submit" class="js-city-submit" value="Visualize">
<input type="submit" class="js-city-random" value="Random">
<br>
<p class="err-msg js-err-msg"></p>
</form>
</header>
<main>
<div class="background js-background"></div>
<div class="output">
<img src="images/loading.svg" class="loading js-loading" />
<section class="output-weather js-output-weather">
</div>
</section>
<section class="help-text js-help-text">
<p>HELP »</p>
<p>The system of particles represents the direction, velocity and temperature of the wind</p>
<p>Wind direction is represented starting from the North, 0 degrees in clockwise fashion
</p>
</section>
<img class="icon help-icon js-help-icon" src="images/help.svg" alt="help">
<a href="https://github.com/CamiloGarciaLaRotta/w3-weather"><img class="icon gh-icon" src="images/github.svg"
alt="GitHub"></a>
</main>
<script src="https://code.jquery.com/jquery-3.4.0.min.js"
integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg=" crossorigin="anonymous"></script>
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/p5.min.js"
integrity="sha256-KDK3xm/GlUAv2dBVItuCM6jjCCtAVrjEfsdpcuMbN5M=" crossorigin="anonymous"></script>
<script src="scripts/app.js"></script>
<script src="scripts/draw.js"></script>
</body>
</html>