-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebpage.html
More file actions
114 lines (102 loc) · 3.72 KB
/
webpage.html
File metadata and controls
114 lines (102 loc) · 3.72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
.mystyle
{
margin-left: 200px;
width: 900px;
height: 450px;
}
.floating-box {
float: right;
width: 150px;
height: 75px;
margin: 10px;
border: 3px solid #73AD21;
overflow: hidden;
}
.after-box {
clear: right;
border: 3px solid red;
}
.clearfix::after {
content: "";
clear: both;
display: table;}
</style>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="Assignment.html" target=_blank >My website</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="index.html" target=_blank >Home</a></li>
<li><a href="F:/Full stack developer/HTML/Form.html">Register</a></li>
<li><a href="F:/Full stack developer/Assignment.html" target=_blank>About</a></li>
<li><a href="#">Page 3</a></li>
</ul>
</div>
</nav>
<div id="myCarousel" class="carousel slide right">
<div class="carousel-inner">
<div class="active item">
<img src="one.jpg" class="mystyle">
</div>
<div class="item">
<img src="two.jpg" class="mystyle">
</div>
<div class="item">
<img src="three.jpg" class="mystyle">
</div>
</div>
<a class="carousel-control left" href="#myCarousel" data-slide="prev"></a>
<a class="carousel-control right" href="#myCarousel" data-slide="next"></a>
</div>
<div class="floating-box">Floating box
<div class="clearfix">
<img src="one.jpg" alt="one" width="150px" height="75px">
</div>
</div>
<div class="floating-box">Floating box
<div class="clearfix">
<img src="one.jpg" alt="one" width="150px" height="75px">
</div>
</div>
<div class="floating-box">Floating box
<div class="clearfix">
<img src="one.jpg" alt="one" width="150px" height="75px">
</div>
</div>
<div class="floating-box">Floating box
<div class="clearfix">
<img src="one.jpg" alt="one" width="150px" height="75px">
</div>
</div>
<div class="floating-box">Floating box
<div class="clearfix">
<img src="one.jpg" alt="one" width="150px" height="75px">
</div>
</div>
<div class="floating-box">Floating box
<div class="clearfix">
<img src="one.jpg" alt="one" width="150px" height="75px">
</div>
</div>
<div class="floating-box">Floating box
<div class="clearfix">
<img src="one.jpg" alt="one" width="150px" height="75px">
</div>
</div>
<div class="floating-box">Floating box
<div class="clearfix">
<img src="one.jpg" alt="one" width="150px" height="75px">
</div>
</div>
<div class="after-box">Another box, after the floating boxes...</div>
</body>
</html>