-
Notifications
You must be signed in to change notification settings - Fork 22
/
features.html
96 lines (79 loc) · 2.82 KB
/
features.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
<!DOCTYPE html>
<!-- adapted from https://www.w3schools.com/w3css/tryw3css_templates_parallax.htm#portfolio -->
<html lang="en">
<head>
<!-- redirect old incoming links to home page -->
<meta http-equiv="refresh" content="0; url=https://www.mazacoin.org/index.html">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>#MAZA crypto coin for sovereign tribes</title>
<meta name="description" content="Maza is a cryptocurrency for sovereign tribes. It is known as mazacoin, created in 2013.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/w3.css">
<link rel="stylesheet" href="./css/Lato.css">
<link rel="stylesheet" href="./css/font-awesome.min.css">
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="favicon.ico">
<!-- <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> -->
<!-- apple -->
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-touch-icon-180x180.png">
<!-- Browser -->
<link rel="shortcut icon" type="image/x-icon" href="images/favicon/favicon-32x32.ico">
<link rel="icon" type="image/png" sizes="96x96" href="images/favicon/favicon-96x96.png">
<!-- Windows Metro -->
<meta name="msapplication-square310x310logo" content="images/favicon/mstile-310x310.png">
<meta name="msapplication-TileColor" content="[HEXFARBE (z.B. #000000)]">
<style>
body{
background-color: #fcfcfc;
color: #000;
}
body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;}
body, html {
height: 100%;
line-height: 1.8;
}
.dark-mode-a {
background-color: #3f3f3f;
color: #f1f1f1;
}
/* Create a Parallax Effect */
.bgimg-1, .bgimg-2, .bgimg-3 {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/* First image (Logo. Full height) /w3images/parallax1.jpg*/
.bgimg-1 {
background-image: url('./images/bison-splash-1014x800.jpg');
min-height: 100%;
background-color: #3f3f3f;
}
/* Second image (Portfolio) */
.bgimg-2 {
background-image: url("./images/goldcoin.png");
min-height: 400px;
}
/* Third image (Contact) */
.bgimg-3 {
background-image: url("./images/photo_2022-02-10_16-06-25.jpg");
min-height: 400px; /* mazatribe.DIWYRGnWAAAKbkY.jpg hive_background_flash.png*/
}
.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}
/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-width: 1600px) {
.bgimg-1, .bgimg-2, .bgimg-3 {
background-attachment: scroll;
min-height: 400px;
}
}
</style>
</head>
<body>
<a href="https://www.mazacoin.org/index.html">Home</a>
</body>
</html>