-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (76 loc) · 2.6 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
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
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-177259318-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-177259318-1");
</script>
<title>Narval Software</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link href="style.css" rel="stylesheet" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<meta
name="google-site-verification"
content="A45vbCt2TUeCUx-IHAZak1jsJIW4NwtLIDD9hfwXokE"
/>
</head>
<body>
<div>
<div class="logo">
<img src="wide_logo.png" width="400px" />
</div>
<div class="email">
<a
href="mailto:[email protected]"
class="email"
target="_blank"
>
<i class="fa fa-envelope fa-lg"></i>
</a>
<a
href="https://www.linkedin.com/company/narval-software"
class="email"
target="_blank"
>
<i class="fa fa-linkedin fa-lg"></i>
</a>
<a
href="https://github.com/narval-opensource"
class="email"
target="_blank"
>
<i class="fa fa-github fa-lg"></i>
</a>
</div>
<div class="bottom">2021 - Narval Software </div>
</div>
<canvas class="background"></canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/particlesjs/2.2.2/particles.min.js"></script>
<script>
window.onload = function () {
Particles.init({
selector: ".background",
color: ["#E06379", "#9C3979"],
connectParticles: true,
sizeVariations: 5,
speed: 0.2,
maxParticles: 120,
minDistance: 120,
});
};
</script>
</body>
</html>