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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
<footer class="darkBg"> <div class="container"> <div class="footerWrap">
<div class="footerlogo"> <img src="../../assets/img/logo_white.png" alt="logo" /> </div> <div class="footerMenu"> <div class="mediaWrap footermedia"> <span class="text-white">Follow Us:</span> <span class="text-white"><i class="fab fa-facebook-f"></i></span> <span class="text-white"><i class="fab fa-instagram"></i></span> <span class="text-white"><i class="fab fa-youtube"></i></span> </div> <ul class="footerMenuItem"> <li><a href="about.php">About Us</a> </li> <li><a href="news_list.php">News & Events</a> </li> <li><a href="business_list.php">Business Info</a> </li> <li><a href="reference_website.php">Reference Website</a> </li> <li><a href="contact.php">Contact Us</a> </li>
</ul> </div>
</div>
</div>
</footer> <div class="ci"> <div class="container"> <div class="footerSponsor"> <div class="footerSponsorlogo"> <div class="footerSponsorItem"> <p class="mb-0">Co-organizer:</p> <div class="organizerWrap"> <img src="../../assets/img/logo_en.png" alt="" class="img-fluid w-400" /> </div> </div> <div class="footerSponsorItem"> <p class="mb-0">Sponsor:</p> <div class="organizerWrap"> <img src="../../assets/img/footerlogo02.png" alt="" /> <img src="../../assets/img/footerlogo01.png" alt="" /> </div> </div> </div> <div class="footerotherlogo"> <div class="footerSponsorItem">
<div class="organizerWrap"> <img src="../../assets/img/footerlogo04.png" alt="" />
</div> </div> </div> </div> <div class="footerCi"> <p class="small mb-0">© <span id="autodate"></span> Junior Chamber International Hong Kong Ltd. 國際青年商會香港總會 All rights reserved.</p> <div class="small"> <a href="terms.php"> Terms and Condition </a> | <a href="privacy.php">Privacy Statement</a> </div> </div> </div>
</div> <script> // Create a new function called newDate() function newDate() { //return a new Date() -- returns the current calendar year. return new Date().getFullYear(); } // after everything else has loaded on the page, load this command: find the element (like a <span>) with the ID of 'autoupdate' and insert the dash '-' and the result of the newDate() function that returns the current calendar year. (ie. '-2017' or whatever the current calendar year is) document.onload = document.getElementById("autodate").innerHTML = newDate(); </script>
|