-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<title>Drawing National Flag of Nepal using Javascript and HTML 5 canvas</title>
<link rel='stylesheet' type='text/css' href='style.css'/>
</head>
<body>
<div id="wrap">
<canvas id="flagOfNepal" width="492" height="600">
<p>Sorry folks! <br />
Your browser doesnot supports HTML5 <br />
Either update you browser or <a href="https://www.mozilla.org/en-US/firefox/new/">Download latest Firefox</a>
</p>
</canvas>
<div id="desc">
<h1>National Flag of Nepal</h1>
<ul>
<li>Drawing National Flag of <a href="http://en.wikipedia.org/wiki/Nepal">Nepal</a> using JavaScript and HTML5 canvas.</li>
<li>Our Flag is the unique flag of the world.</li>
<li>This flag is adopted on December 16, 1962 with the formation of new constitution.</li>
</ul>
Other Reference:
<ul>
<li>Method of making the flag <a href="http://www.supremecourt.gov.np/pages.php?d=lawmaterial&f=constitution_schedule_i">Government Website</a>.</li>
<li>Wikipedia of <a href="http://en.wikipedia.org/wiki/Flag_of_Nepal">Flag of Nepal</a>.</li>
<li><a href="https://www.youtube.com/watch?v=f2Gne3UHKHs">The most numerical Flag</a> (Video | YouTube).</li>
</ul>
</div>
</div>
<script type='text/javascript' src='drawNepalFlag.js'></script>
</body>
</html>