-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
37 lines (26 loc) · 711 Bytes
/
index.php
File metadata and controls
37 lines (26 loc) · 711 Bytes
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
<html>
<meta>
<title>MY WEB</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel='stylesheet' href="css/bootstrap-theme.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/index_css.css">
<script src="js/index_javascript.js"></script>
</head>
<body bgcolor="#7fffd4" onload="initial_functions()">
<div id="main" class="container-fluid">
// the weather detials which are recieved from the api will be displayed here...
<div id="show_data" >
</div>
</div>
<script src="js/bootstrap.js"></script>
</body>
</html>
<?php
/**
* Created by PhpStorm.
* User: ameya
* Date: 11/27/2015
* Time: 8:51 AM
*/
?>