-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathself-serve.html
112 lines (90 loc) · 4.03 KB
/
self-serve.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Advertising on DEV</title>
</head>
<body>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<div>
<!-- hero section -->
<section class="">
<div class="container max-w-screen-xl mx-auto px-4 mt-20">
<div class="flex-col xl:flex-row flex justify-between items-center">
<div class="mx-auto text-center xl:text-left xl:mx-0 mb-0 xl:mb-0 ">
<img class="w-32 xl:w-40 mb-5 mx-auto xl:ml-0" src="https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vny0kbeihm6ephfyj7vm.png">
<h1 class="font-bold text-gray-700 text-4xl md:text-6xl leading-tight mb-10">
Launch your advertising on DEV,<br> in 2 minutes
🚀
</h1>
<p class="font-normal text-gray-700 text-lg md:text-xl mb-10">
Reach a global developer audience of over 1 million registered developers. </p>
</div>
</div>
</section>
<!-- portfolio -->
<section class="">
<div class="container max-w-screen-xl mx-auto px-4">
<h1 class="font-semibold text-gray-700 text-xl md:text-2xl mb-5">
Why advertise on DEV?
</h1>
<p class="font-normal text-gray-700 text-md md:text-lg mb-20">
Our contextual, native ads are shown alongside relevant content, ensuring you're reaching the right audience.
</p>
</div>
</section>
<!-- companies -->
<section class="">
<div class="container max-w-screen-xl mx-auto px-4">
<p class="font-bold text-gray-700 text-lg md:text-xl text-center mb-2">
You're in good company
</p>
<div
class="grid grid-cols-3 w-2/3 lg:w-1/2 mx-auto md:grid-cols-3 xl:grid-cols-3 items-center content-evenly justify-items-center">
<a href="https://www.algolia.com/">
<img src="https://dev-to-uploads.s3.amazonaws.com/uploads/articles/danyqsocp6hln7olsjat.png" alt="Algolia"
class="mb-5 md:mb-5 w-36 xl:mb-0">
</a>
<a href="https://www.jetbrains.com/">
<img src="https://dev-to-uploads.s3.amazonaws.com/uploads/articles/c4syneud1r44hscs65au.png" alt="JetBrains"
class="mb-5 w-36 md:mb-0">
</a>
<a href="https://sentry.io/">
<img src="https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a2seabgujllxl5ge3190.png" alt="Sentry"
class="mb-5 md:mb-5 w-36 xl:mb-0">
</a>
</div>
</div>
</section>
<section class="">
<div class="container max-w-screen-xl mx-auto px-4">
<hr class="text-gray-300 mb-8">
<div class="flex flex-wrap md:flex-nowrap justify-between mb-8">
<div>
<p class="font-semibold text-gray-700 text-xl md:text-2xl mb-2 md:mb-10">
Post Sidebar Campaign
</p>
<ul class="font-normal text-gray-700 text-md md:text-lg md:mb-10 list-disc list-inside">
<li> 500,000 impressions </li>
<li> $10 CPM
<li> ~2 week duration </li>
<li> Daily reporting </li>
</ul>
</div>
<div class="mt-5 lg:mt-10">
<p class="font-semibold text-gray-700 text-2xl md:text-4xl mb-4 md:mb-10">
$5,000
</p>
<a href="https://airtable.com/apppeh4ER2P9nayiD/shrAg8ScM7bVSPg2C"
class="px-8 py-3 bg-[#3b49df] hover:bg-[#1c29ba] font-medium text-white text-md md:text-lg rounded-md transition ease-in-out duration-300">Order
now</a>
</div>
</div>
<hr class="text-gray-300 mb-8">
</div>
</section>
</div>
</body>
</html>