-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtryforfree.html
75 lines (65 loc) · 2.77 KB
/
tryforfree.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Free Trial Page</title>
<link rel="stylesheet" href="css/free.css">
<link rel="icon" type="img/x-icon" href="img/salesforce-with-type-logo.svg">
</head>
<body>
<div class="main-container">
<div class="content-container">
<img src="img/salesforce-with-type-logo.svg" alt="Salesforce Logo">
<h1>Start your free trial.</h1>
<p>No credit card required, no software to install.</p>
<p>With your 30-day trial, you get:</p>
<ul class="features-list">
<li>Pre-loaded data or upload your own</li>
<li>Pre-configured processes, reports, and dashboards</li>
<li>Guided experiences for sales reps, leaders, and administrators</li>
<li>Online training and live onboarding webinars</li>
</ul>
<p>Questions? Talk to an expert: <strong>1800-420-7332</strong>.</p>
<img src="img/free/freetrial-sales-inr-2000.png" alt="Promotional Image" style="width: 100%; margin-top: 20px; border-radius: 10px;">
</div>
<div class="form-container">
<h2>Sign up now to start your free sales trial.</h2>
<p>Complete the form to start your free trial. Our team will be in touch to help you make the most of your trial.</p>
<form>
<input type="text" placeholder="First name" required>
<input type="text" placeholder="Last name" required>
<input type="email" placeholder="Email" required>
<input type="text" placeholder="Job Title" required>
<input type="text" placeholder="Company" required>
<select>
<option>Employees</option>
<option>1-50</option>
<option>51-100</option>
<option>101-500</option>
</select>
<select>
<option>Country/Region</option>
<option>India</option>
<option>USA</option>
<option>UK</option>
</select>
<input type="tel" placeholder="Phone" required>
<label>
<input type="checkbox" required> I agree to the <a href="#">Main Services Agreement</a>.
</label>
<button type="submit">START MY FREE TRIAL</button>
</form>
<p class="footer-text">Your free trial may be provisioned on or migrated to Hyperforce, Salesforce’s public cloud infrastructure...</p>
</div>
</div>
<footer>
<div class="footer-bottom">
<p>© 2024 Salesforce, Inc. All rights reserved.</p>
<a href="#">Legal</a> |
<a href="#">Privacy</a> |
<a href="#">Contact</a>
</div>
</footer>
</body>
</html>