-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
107 lines (61 loc) · 3.52 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Hi, I am Yoshitha Rathnayake. This is the CALCULATOR that I made using JAVASCRIPT Programming Language">
<meta name="author" content="YOSHITHA RATHNAYAKE">
<meta name="keywords" content="JAVASCRIPT CALCULATOR">
<!-- Facebook OG Tags -->
<meta property="og:title" content="YOSHITHA RATHNAYAKE"/>
<meta property="og:type" content="calculator-website"/>
<meta property="og:url" content="https://yoshitharathnayake.github.io/JAVASCRIPT-CALCULATOR"/>
<meta property="og:image" content="assets/img/Calculator.jpg"/>
<meta property="og:description" content="Hi, I am Yoshitha Rathnayake. This is the CALCULATOR that I made using JAVASCRIPT Programming Language"/>
<meta property="og:site_name" content="JAVASCRIPT CALCULATOR"/>
<meta property="og:locale" content="en_US"/>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css" integrity="sha384-jLKHWM3JRmfMU0A5x5AkjWkw/EYfGUAGagvnfryNV3F9VqM98XiIH7VBGVoxVSc7" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- LineIcons -->
<link href="your-project-dir/icon-font/lineicons.css" rel="stylesheet">
<link href="https://cdn.lineicons.com/3.0/lineicons.css" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" type="text/CSS" href="assets/css/styles.css">
<!-- Favicon -->
<link rel="icon" type="image/png" href="assets/img/Calculator.jpg" />
<!-- Title -->
<title>JAVASCRIPT CALCULATOR | YOSHITHA RATHNAYAKE</title>
</head>
<!-- Calculator Body -->
<body>
<!-- Main Section -->
<section class="main">
<!-- Calculator Title -->
<center onclick="Calculator()" class="cal-title">
<head><i><b>Calculator...</b></i></head>
</center>
<!-- Calculator Description -->
<center class="cal-description">
<p><i>If you want solve mathematical problems, click on the "Calculator..." .</i></p>
</center>
<!-- Calculator Image -->
<center class="cal-img">
<img src="assets/img/Calculator.jpg" alt="Calculator Image" width="300px">
</center>
<!-- Marquee -->
<marquee class="cal-marquee"><b><i>Calculator</i></b></marquee>
</section>
<!-- JavaScript -->
<script src="assets/js/app.js"></script>
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/e4d27be656.js" crossorigin="anonymous"></script>
<!-- Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>