-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (37 loc) · 1.35 KB
/
index.html
File metadata and controls
42 lines (37 loc) · 1.35 KB
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
<!DOCTYPE html>
<!--
*
* Created by Ramkumar on 01-02-2017.
-->
<html>
<head>
<title>Re-ordering Images using JS from JSON object</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Setting Icon for the web page-->
<link rel="icon" href="images/author.jpg" type="image/x-icon">
<!-- Linking Needed CSS-->
<link href="mycss.css" rel="stylesheet" type="text/css"/>
<style>
</style>
</head>
<body>
<div id="main-container" class="main-container">
<!-- Space for loading images from JSON and reorder their position -->
</div>
<div id="footer">
<p>
<big>
<strong> ©Copyright <big>Ramkumar</big>
<br>
mail@: ramk2394@gmail.com
<br>
contact @ +918508566966
</strong>
</big>
</p>
</div>
<!-- Script for loading Images from JSON and Re-oreder the image were defined in the below script file-->
<script src="script.js" type="text/javascript"></script>
</body>
</html>