-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
30 lines (29 loc) · 1011 Bytes
/
Copy pathhome.html
File metadata and controls
30 lines (29 loc) · 1011 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 kol0 text-center ">
<h1>Hello World!</h1>
</div>
</div>
<div class="row">
<div class="col-xs-6 col-sm-3 col-md-6 col-lg-4 kol1">
<p>Lorem ipsum...</p>
</div>
<div class="col-xs-6 col-sm-9 col-md-6 col-lg-8 kol2">
<p>Sed ut perspiciatis...</p>
</div>
</div>
</div>
</body>
</html>