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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
| <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="cssstyle.css">
<title>SoftRabbit - Cyllares Projects</title>
</head>
<body>
<div class="row">
<h1 class="col-md-offset-1 col-md-4">SoftRabbit - Cyllares</h1>
</div>
<h3>Projects Website</h3>
<nav class="navbar navbar-default">
<div class="container-fluid">
<ul class="nav navbar-nav">
<li class="active"><a href="#">home</a></li>
<li><a href="#menu1">menu1</a></li>
<li><a href="#menu2">menu2</a></li>
</ul>
</div>
</nav>
<div id="home">
<table class="table-md-offset-3 col-md-4">
<thead>
<tr>
<th>News</th>
</tr>
</thead>
<tbody>
<tr>
<td>sup</td>
</tr>
</tbody>
</table>
</div>
<div id="menu1">
<h3>Menu 1</h3>
<p>Some content in menu 1.</p>
</div>
<div id="menu2"class="">
<h3>Menu 2</h3>
<p>Some content in menu 2.</p>
</div>
</div>
<script src="jquery.js"></script>
<script src="jquerythings.js"></script>
</body>
</html> |
Partager