-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsalesforcecard.html
91 lines (83 loc) · 3.13 KB
/
salesforcecard.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!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: 25%;
box-shadow: 0 2px 8px -2px;
border-radius: 10px;
margin: 30px;
float: left;
text-align: center;
}
a
{
margin-left: 20px;
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
color: #032D60;
}
img{
width: 100%;
}
h3
{
color: #032D60;
font-family: Arial, Helvetica, sans-serif;
margin-left: 20px;
font-size: 18px;
}
p
{
font-family: Arial, Helvetica, sans-serif;
margin-left: 20px;
font-size: 14px;
}
@media only screen and (min-width: 600px)
{
.box{
width: 100%;
}
.one{
width: 48%;
}
}
</style>
</head>
<body>
<div class="box">
<div class="one">
<img src="https://wp.salesforce.com/en-in/wp-content/uploads/sites/21/2023/03/pb-hp-product-smb_icon-1.jpg?resize=768,433">
<h3>Small Business</h3>
<p>Sales, service, and email<br>outreach tools in a single app.</p><br><br>
<a href="https://www.salesforce.com/in/products/salesforce-starter/?d=pc1-btn-smblearn" target="_blank">Learn more</a>
</div>
<div class="one">
<img src="https://wp.salesforce.com/en-in/wp-content/uploads/sites/21/2023/03/pb-hp-product-smb_icon-2.jpg?resize=768,433">
<h3>Sales Cloud</h3>
<p> Close more deals and speed up<br>growth with the #1 CRM.</p><br><br>
<a href="https://www.salesforce.com/in/products/salesforce-starter/?d=pc1-btn-smblearn" target="_blank">Learn more</a>
</div>
<div class="one">
<img src="https://wp.salesforce.com/en-in/wp-content/uploads/sites/21/2023/03/pb-hp-product-smb_icon-3.jpg?resize=768,433">
<h3>Service Cloud</h3>
<p> Make customers happy faster<br>and build loyalty with Service<br>Cloud.</p><br>
<a href="https://www.salesforce.com/in/products/salesforce-starter/?d=pc1-btn-smblearn" target="_blank">Learn more</a>
</div>
<div class="one">
<img src="https://wp.salesforce.com/en-in/wp-content/uploads/sites/21/2023/03/pb-hp-product-smb_icon-4.jpg?resize=768,433">
<h3>Marketing Cloud</h3>
<p>Build customer relationships for<br>life with data-first digital<br>marketing.</p><br>
<a href="https://www.salesforce.com/in/products/salesforce-starter/?d=pc1-btn-smblearn" target="_blank">Learn more</a>
</div>
</div>
</body>
</html>