-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdummy
88 lines (66 loc) · 2.12 KB
/
dummy
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
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
.container {
width: 150px;
height: 150px;
position: relative;
margin: 30px;
}
.box {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
opacity: 0.7;
background: #0057e3;
}
.overlay {
z-index: 9;
margin: 30px;
background: #009938;
}
</style>
</head>
<body>
<div class="container">
<div class="box"></div>
<div class="box overlay"></div>
</div>
</body>
</html>
<div class="container-fluid" style="width:90%; height: 700px;">
<div class="row">
<div class="bg-danger m-1" style="width: 70%; height: 100vh;">
<h1>Our Latest Blog Posts</h1>
<div class="photos">
</div>
<div class="photos">
</div>
</div>
<div class="bg-primary m-1" style="width: 28%; height: 700px;">
<div class="row">
<div class="col-sm" style="display: flex;">
<div class="carbon-example flex-wrapper">
<img src="https://www.bootdey.com/image/200x200/FFB6C1/000000" alt="example design logo"
style="width: 50px; height:50px">
<div class="inner-wrapper">
<p>Test the UX of your website. Diagnose problem areas & prove new designs work.</p>
</div>
</div>
</div>
<div class="col-sm">
<div class="carbon-example flex-wrapper">
<img src="https://www.bootdey.com/image/200x200/87CEFA/000000" alt="example design logo">
<div class="inner-wrapper">
<p>Test the UX of your website. Diagnose problem areas & prove new designs work.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>