-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmediaquery2.html
More file actions
82 lines (79 loc) · 2.61 KB
/
mediaquery2.html
File metadata and controls
82 lines (79 loc) · 2.61 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
width:100%;
}
.one{
width: 28%;
float: left;
margin: 2%;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
text-align:center;
border-radius: 16px;
}
img{
width: 35%;
margin-top: 20px;
}
h3{
color: #032D60;
font-family: Arial, Helvetica, sans-serif;
text-align: left;
margin-left: 24px;
font-weight: 700;
font-size: 23px;
}
h5{
font-family: Arial, Helvetica, sans-serif;
text-align: left;
margin-left: 24px;
font-size: 16px;
font-weight: 100;
}
a{
color: #032D60;
font-family: Arial, Helvetica, sans-serif;
text-align: left;
margin-left: -200px;
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
.box
{
width: 100%;
}
.one{
width: 100%;
margin: 2%;
}
}
</style>
</head>
<body>
<div class="box">
<div class="one">
<img src="https://cdn-icons-png.freepik.com/256/945/945147.png?ga=GA1.1.1565935538.1706018255&semt=ais">
<h3>Apex Integration Services</h3>
<h5>Integrate with external apps using Apex REST and SOAP services.</h5>
<a href="https://www.salesforce.com/in/products/salesforce-starter/?d=pc1-btn-smblearn" target="_blank">Start learning</a>
</div>
<div class="one">
<img src="https://cdn-icons-png.freepik.com/256/583/583846.png?ga=GA1.1.1565935538.1706018255&semt=ais">
<h3>Apex Testing</h3>
<h5>Write robust code by executimg Apex unit tests.</h5>
<a href="https://www.salesforce.com/in/products/salesforce-starter/?d=pc1-btn-smblearn" target="_blank">Start learning</a>
</div>
<div class="one">
<img src="https://cdn-icons-png.freepik.com/256/1055/1055656.png?ga=GA1.1.1565935538.1706018255&semt=ais">
<h3>Data Management</h3>
<h5>Learn how to import and export data in Salesforce.</h5>
<a href="https://www.salesforce.com/in/products/salesforce-starter/?d=pc1-btn-smblearn" target="_blank">Start learning</a>
</div>
</div>
</body>
</html>