forked from AmanSingour/Bootstrap-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path07 Images.html
43 lines (39 loc) · 1.61 KB
/
07 Images.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Bootstrap</title>
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery lib -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="col-lg-4">
<h1>Rounded Corner</h1>
<img class="img-rounded" src="./res/i.amn@4x.png" width="300px" height="300px" alt="image">
</div>
<div class="col-lg-4">
<h1>Rounded Corner</h1>
<img class="img-circle" src="./res/i.amn@4x.png" width="300px" height="300px%" alt="image">
</div>
<div class="col-lg-4">
<h1>Thumbnail Corner</h1>
<img class="img-thumbnail" src="./res/i.amn@4x.png" width="300px%" height="300px%" alt="image">
</div>
<div class="col-lg-6">
<h1>Without Responsive</h1>
<img src="./res/i.amn@4x.png" width="500px" height="500px" alt="image">
</div>
<div class="col-lg-6">
<h1>Responsive</h1>
<img class="img-responsive" src="./res/i.amn@4x.png" width="500px" height="500px" alt="image">
</div>
</div>
</body>
</html>