-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-me.html
104 lines (102 loc) · 5.26 KB
/
contact-me.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/tabs.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/stars.css">
<link rel="preload" href="css/normalize.css" as="style">
<link rel="stylesheet" href="css/normalize.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;1,100;1,400&family=Montserrat:ital,wght@0,300;0,400;0,700;0,900;1,200;1,400&family=Noto+Serif+Tamil:wght@100;400&family=PT+Serif:ital@0;1&family=Questrial&family=Rubik:wght@400;500&display=swap" rel="stylesheet">
<script type="text/javascript" src="main.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Book</title>
<link rel="icon" type="fav-icon" href="img/vozzoa-sello.svg" href="img/vozzoa-sello.svg">
</head>
<body>
<header class="d-flex intro intro-var ">
<nav role="navigation">
<div id="menuToggle">
<input type="checkbox" />
<span></span>
<span></span>
<span></span>
<ul id="menu">
<a href="index.html"><li>Home</li></a>
<a href="about.html"><li>About</li></a>
<a href="browse-my-work.html"><li>Work</li></a>
<a href="https://www.behance.net/fernandadominguez" target="_blank"><li>Behance</li></a>
<a href="https://www.linkedin.com/in/fernanda-dom%C3%ADnguez-dise%C3%B1o-design-mex/" target="_blank"><li>LinkedIn</li></a>
</ul>
</div>
</nav>
<a href="index.html" class="align-center d-flex pl-3 fs-22 m-0 primary-link"><h5 class= "m-0 primary-link" > Fernanda Domínguez </h5>
</a>
</header>
<input type="checkbox" id="theme-toggle" />
<label class="toggle-btn" onclick="toggleDarkLight()" for="theme-toggle"></label>
<section class="d-flex justify-content-center">
<div class="slider-container-contact tabs m-0">
<a class="card container-contact tablink primary-container class-center slider-item" block-sm>
<h1 class="container negative text-center">Mexico City</h1>
</a>
<a href=" https://wa.me/5215521980031?text=Hello%20there!%20I'm%20interested%20in%20your%20profile%20or%20services." target="_blank"
class="card container-contact tablink primary-container class-center slider-item" block-sm>
<h2 class="container negative text-center"><i style="font-size: 7rem;" class="fa-brands fa-whatsapp"></i></h2>
</a>
<a class="card container-contact tablink primary-container class-center slider-item" block-sm>
<h2 class="clock" timezone="-6"></h2></br>
<h2 class="container negative text-center">(GMT-6)</h2>
</a>
</div>
</section>
<footer class="container">
<div class="class-center d-flex flex-column">
<div class="class-center d-flex flex-column">
<p class="text-center"> Copyright © 2017-2023 Fernanda Domínguez, All Rights Reserved.</p>
</div>
</footer>
</body>
<script src="https://kit.fontawesome.com/c50a65dd68.js" crossorigin="anonymous"></script>
<script>
function dateToText(date) {
var hours = date.getHours()
var minutes = date.getMinutes();
// var seconds = date.getSeconds();
if (minutes < 10) minutes = '0'+minutes;
//if seconds < 10) seconds = '0'+seconds;
if (hours < 10) hours = '0'+hours;
return hours + ":" + minutes; // + ":" + seconds;
}
function updateClocks() {
for (var i = 0; i < window.arrClocks.length; i++) {
var clock = window.arrClocks[i];
var offset = window.arrOffsets[i];
clock.innerHTML = dateToText(new Date(new Date().getTime()+offset));
}
}
function startClocks() {
clockElements = document.getElementsByClassName('clock');
window.arrClocks = []
window.arrOffsets = [];
var j = 0;
for(var i = 0; i < clockElements.length; i++) {
el = clockElements[i];
timezone = parseInt(el.getAttribute('timezone'));
if (!isNaN(timezone)) {
var tzDifference = timezone * 60 + (new Date()).getTimezoneOffset();
var offset = tzDifference * 60 * 1000;
window.arrClocks.push(el);
window.arrOffsets.push(offset);
}
}
updateClocks();
clockID = setInterval(updateClocks, 1000);
}
setTimeout(startClocks, 100);
</script>
</html>