-
Notifications
You must be signed in to change notification settings - Fork 0
/
clonepg.html
70 lines (60 loc) · 2.62 KB
/
clonepg.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
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
<!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 Clone page</title>
<link rel="stylesheet" href="clonepg.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz"
crossorigin="anonymous">
</head>
<body>
<div class="container-fluid">
<!-- FIRST ROW -->
<div class="row bg-aqua-fade">
<div class="col-sm-12 col-md-6">
<img class="img-fluid dood" src="\images\thing.jpg" alt="vaporwave landscape">
</div>
<div class="col-sm-12 col-md-6 boi">
<h1 class="content mb-5 card-title desc">Live Free</h1>
<p class="desc card-text content">With the color aesthetic of the early 90s, Lonely Cloud is bringing pastel
back with
a passion. Inspired by a skater's preference in clothing and the style of the vaporwave movement, our
clothing is built for form and function.</p>
</div>
</div>
<!-- SECOND ROW -->
<div class="row bottom-stretch bg-gray">
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
<h3 class="bottom-title content text-center mt-5 mb-3 d-inlineblock">Lonely Cloud</h3>
<p class="content text-left d-inlineblock bottom-tag"> A brand to fit to match your lifestyle, <br> and look
better
doing it.</p>
</div>
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
<div class="icon-container d-flex">
<i class="fab fa-apple big-icon icons tech-logo mr-2"></i>
<i class="fab fa-android big-icon icons tech-logo ml-2"></i>
</div>
</div>
<div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
<div class="row">
<div class="thumbnails col-12">
<a href="facebook.html" class=" btn btn-dark social" role="button">
<i class="thumb fab fa-facebook-square big-icon"></i>
</a>
<a href="twitter.html" class=" btn btn-dark social" role="button">
<i class="thumb fab fa-twitter-square big-icon"></i></a>
</div>
<div class="col-12">
<p class="credits content">Lonely Cloud-Copyright 2018</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>