-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiframe_module.html
More file actions
53 lines (53 loc) · 1.8 KB
/
Copy pathiframe_module.html
File metadata and controls
53 lines (53 loc) · 1.8 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
43
44
45
46
47
48
49
50
51
52
53
<html>
<head>
<title>My UTC</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<style>
th, td
{padding: 10px;}
input[type="text"]
{
padding:3px;
border:1px solid #848484;
border-radius:5px;
box-shadow:1px 1px 2px #C0C0C0 inset;
}
.affix {
top: 0;
width: 100%;
}
.affix + .container-fluid {
padding-top: 80px;
}
.navbar-brand {
font-family: arial;
font-weight: bolder;
font-size: 30;
}
</style>
</head>
<body data-spy="scroll" data-spy="affix" data-target=".navbar" style="background-color:#848484">
<nav class="navbar navbar-inverse" data-spy="affix" style="background-color:#FACC2E">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" style="color:#fff;text-align:left">MYUTC</a>
</div>
<a src="" type="button" class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" style="background-color:#61380B; border-color:#FACC2E">Login
<span class="caret"></span>
</a>
<a src="" type="button" class="btn btn-default" style="background-color:#61380B; color:#fff; border-color:#FACC2E">Retour</a>
<ul class="dropdown-menu">
<li><a href="#">Déconnexion</a></li>
<li><a href="#">Profil</a></li>
</ul>
</div>
</nav>
<div class="container-fluid" style="width:99%; ">
<iframe src="http://webdesign.about.com/od/iframes/a/iframes-and-css.htm" align="middle" marginheight="100" width="100%" height="100%" marginwidth=200px></iframe>
</div>
</body>
</html>