-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·28 lines (28 loc) · 926 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Welcome || My JavaScript Framework</title>
<meta name="description" content="My Greetr Library">
<meta name="keywords" content="">
<meta name="author" content="Amir Yacaman">
</head>
<body>
<div id="logindiv">
<select id="lang">
<option value="en">English</option>
<option value="es">Spanish</option>
</select>
<input type="button" value="Login" id="login"/>
</div>
<h1 id="greeting"></h1>
<!-- jQuery CDN DEBUG -->
<!--<script src="https://code.jquery.com/jquery-git2.min.js"></script> -->
<!-- jQuery Local FILE -->
<script src="bower_components/jQuery/dist/jquery.min.js"></script>
<!--GREETER JS LOCAL FILE -->
<script src="greetr.js"></script>
<!-- APP JS FILE -->
<script src="app.js"></script>
</body>
</html>