-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
20 lines (18 loc) · 1.31 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="Stylesheet.css">
<title>Responsive Layout</title>
</head>
<body>
<h1>Specifications for different devices</h1>
<div class="row">
<div class="col-lg-4 col-md-6 col sm-12"><p>In the desktop view (992px and above), each of the 3 sections should take up equal amount of space on the screen. As you make the browser window wider or narrower, each section should become wider or narrower.<p id="t1">Dextop</p></div>
<div class="col-lg-4 col-md-6 col sm-12"><p>In the tablet view (between 768px and 991px, inclusively), the first 2 sections should be in the first row and be of equal size. The 3rd section should be in the second row and take up the entire row by itself. For a visual reference of this view, see the tablet mockup illustration below.<p id="t2">Tablet</p></div>
<div class="col-lg-4 col-md-12 col sm-12"><p>In the mobile view (equal to or less than 767px), each section should take up the entire row. For a visual reference of this view, see the mobile mockup illustration below.<p id="t3">Mobile</p></div>
</div>
</body>
</html>