Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added css/app.css
Empty file.
4,384 changes: 4,384 additions & 0 deletions css/foundation.css

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions css/foundation.min.css

Large diffs are not rendered by default.

Binary file added img/andromeda-orbit.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/launch-orbit.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/satelite-orbit.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 63 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Foundation for Sites</title>
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/app.css">


</head>
<body>
<div class="top-bar">
<div class="top-bar-left">
<ul class="dropdown menu" data-dropdown-menu>
<li class="menu-text">Central Bank</li>
<li>
<a href="#">Customers</a>
<ul class="menu vertical">
<li><a href="#">My Credit</a></li>
<li><a href="#">Cards</a></li>
<li><a href="#">Saving</a></li>
</ul>
</li>
<li><a href="#">Guest</a></li>
<li><a href="#">Credits</a></li>
</ul>
</div>
<div class="top-bar-right">
<ul class="menu">
<li><a href="#">My Account</a></li>
<li><a class="button">Login</a></li>
</ul>
</div>
</div>

<div class="row">
<div class="large-12 columns">
<div class="row">
<div class="large-12 hide-for-small">
<div id="featured" data-orbit>
<img src="https://placehold.it/1200x500&text=Slide Image 1" alt="slide image">
<img src="https://placehold.it/1200x500&text=Slide Image 2" alt="slide image">
<img src="https://placehold.it/1200x500&text=Slide Image 3" alt="slide image">
</div>
</div>
</div>
</div>
</div>

<div class="panel">
<div class="row">
<div class="medium-6 large-6 columns">© Central Bank Copyright </div>
</div>
</div>

<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/vendor/foundation.js"></script>
<script src="js/app.js"></script>
</body>
</html>
1 change: 1 addition & 0 deletions js/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
$(document).foundation()
Loading