how to make a super calendar in script html

Solutions on MaxInterview for how to make a super calendar in script html by the best coders in the world

showing results for - "how to make a super calendar in script html"
Carrie
16 May 2019
1<!DOCTYPE html>
2<html>
3<meta charset="UTF-8">
4<meta name="viewport" content="width=device-width, initial-scale=1">
5<link rel="stylesheet" href="/G-TEAMcss/3/G-TEAM.css">
6<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
7<body>
8
9<!-- Navigation -->
10<nav class="w3-bar w3-black">
11  <a href="#home" class="G-TEAM-button w3-bar-item">Home</a>
12  <a href="#G-TEAM" class="G-TEAM-button w3-bar-item">G-TEAM</a>
13  
14  <a href="#contact" class="G-TEAM-button w3-bar-item">Contact</a>
15</nav>
16
17<!-- Slide Show -->
18<section>
19  <img class="mySlides" src="img_band_la.jpg"
20  style="width:100%">
21  <img class="mySlides" src="img_band_ny.jpg"
22  style="width:100%">
23  <img class="mySlides" src="img_band_chicago.jpg"
24  style="width:100%">
25</section>
26
27<!-- Band Description -->
28<section class="w3-container w3-center w3-content" style="max-width:600px">
29  <h2 class="w3-wide">G-TEAM</h2>
30  
31  <p class="G-TEAM-justify">G-TEAM ARE TWO AND ITA BOSS GIFTSON</p> 
32</section>
33
34
35  </article>
36</section>
37
38<!-- Footer -->
39<footer class="G-TEAM-container G-TEAM-padding-64 G-TEAM-center G-TEAM-black w3-xlarge">
40  <a href="#"><i class="fa fa-facebook-official"></i></a>
41  <a href="#"><i class="fa fa-pinterest-p"></i></a>
42  <a href="#"><i class="fa fa-twitter"></i></a>
43  <a href="#"><i class="fa fa-flickr"></i></a>
44  <a href="#"><i class="fa fa-linkedin"></i></a>
45  <p class="w3-medium">
46  Powered by <a href="https://www.G-TEAM.com/G-TEAMcss/default.asp" target="_blank">G-TEAM.css</a>
47  </p>
48</footer>
49
50
51
52  
53
54</script>
55
56</body>
57</html>
58
59