Created
June 25, 2015 07:27
-
-
Save astronomersiva/531ab16c91c8a509361d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Weather at your place</title> | |
<meta name="description" content="Weather"> | |
<meta name="keywords" content="Weather,JavaScript"> | |
<meta name="author" content="Sivasubramanyam"> | |
<script src="//code.jquery.com/jquery-1.10.2.js"></script> | |
<script src="js/script.js"></script> | |
<link rel="stylesheet" type="text/css" href="css/weather-icons.css"> | |
<link rel="stylesheet" type="text/css" href="css/styles.css"> | |
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-6" id="icon"></div> | |
<div class="col-md-6"> | |
<div id="weather"></div> | |
<div id="weatherParams"></div> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment