-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.3 KB
/
index.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
<meta charset="utf-8">
<title>Votre adresse e-mail ou votre nom de domaine basé sur votre nom de famille</title>
<link href='http://fonts.googleapis.com/css?family=Lobster+Two' rel='stylesheet' type='text/css'>
<style>
body {
background-color: #eec;
font-family: 'Lobster Two', cursive;
font-size: 60px;
}
div {
color: #333;
text-align: center;
margin-top: 150px;
}
a {
color: #33c;
}
</style>
<div>Votre adresse e-mail prenom@<span class="domain"></span> pour 2€/mois<br>
<br>
Votre nom de domaine prenom.<span class="domain"></span> pour 5€/mois<br>
<br>
Contactez-nous: <a id="link" href="mailto:[email protected]?subject=">[email protected]</a></div>
<script>
document.getElementById('link').setAttribute('href', document.getElementById('link').getAttribute('href') + window.location.host);
var elems = document.querySelectorAll('.domain');
for (var i in elems) {
elems[i].innerHTML = window.location.host;
}
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-44692133-6', 'delgoulet.fr');
ga('send', 'pageview');
</script>