-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (112 loc) · 5.48 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Raleway:100,300,400,500,700,900" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<title>Measurement Notes</title>
<!-- Additional CSS Files -->
<link rel="stylesheet" href="main.css">
</head>
<body style="background-color:#1a1a1a;">
<!-- ***** Banner Start ***** -->
<div class="banner-container">
<img src="/images/measurementnotes-logo.png" style="width: 7%; margin:0 auto; padding-top:20px; padding-bottom:15px; min-width:150px;">
</div>
<div class="menu-container">
<div class="menu-child">
<a href="/index.html" class="menu-link-active">Home</a> •
<a href="/blog.html" class="menu-link">Blog</a> •
<a href="/support.html" class="menu-link">Support</a> •
<a href="/privacy-policy.html" class="menu-link">Privacy Policy</a>
</div>
</div>
<!-- ***** Banner End ***** -->
<!-- ***** About Start ***** -->
<div class="about-container">
<div style="width: 640px; margin-left: 20px; margin-right: 20px;">
<h2>Taking measurement notes has never been easier. </h2>
<p>
With Measurement Notes you can easily take notes of measurements without having to fiddle with your regular note taking app.
<br><br>
Measurement Notes exceeds your good old fashioned pen and paper as this app simply makes things easier, neater, and more organized.
<br><br>
Supporting both the Metric and Imperial measurement system, you can note down measurements anywhere with ease. Press the "+" button, and start typing. Give the note a name, type in width, height, depth and even weight, if desired, press save, and job's done!
<br><br>
You can also choose what measurement unit you want by default, say you always work with centimeters, you can make centimeters default.
<br><br>
Short summery of features in Measurement Notes:
<br>
• Extremely easy to use
<br>
• Supports both Metric & Imperial
<br>
• Choose a default measurement unit for even faster note-taking
</p>
<br><br>
</div>
</div>
<div class="youtube-wrapper">
<iframe class="youtube-video" src="https://www.youtube.com/embed/WdvWTLitN0c" title="Measurement Notes - Introduction" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<br><br>
<div style="text-align:center;">
<a href="https://play.google.com/store/apps/details?id=com.binaryvigilante.measurementnotes" target="_blank">
<img src="/images/googleplay.png" style="width:15%; min-width:250px;">
</a>
<br>
<br>
<a href="https://apps.apple.com/us/app/measurement-notes/id6445988637" target="_blank">
<img src="/images/apple-store.png" style="width:15%; min-width:250px;">
</a>
</div><br><br><br>
<!-- ***** Image Slider ***** -->
<!-- <div class="slideshow-container">
<div class="mySlides fade">
<img src="/images/screenshots/Play-Store-Screenshot-1.png" style="width:100%; border-radius:15px;">
</div>
<div class="mySlides fade">
<img src="/images/screenshots/Play-Store-Screenshot-2.png" style="width:100%; border-radius:15px;">
</div>
<div class="mySlides fade">
<img src="/images/screenshots/Play-Store-Screenshot-3.png" style="width:100%; border-radius:15px;">
</div>
<div class="mySlides fade">
<img src="/images/screenshots/Play-Store-Screenshot-4.png" style="width:100%; border-radius:15px;">
</div>
<div class="mySlides fade">
<img src="/images/screenshots/Play-Store-Screenshot-5.png" style="width:100%; border-radius:15px;">
</div>
</div>
<br>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
<script>
let slideIndex = 0;
showSlides();
function showSlides() {
let i;
let slides = document.getElementsByClassName("mySlides");
let dots = document.getElementsByClassName("dot");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {slideIndex = 1}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
setTimeout(showSlides, 3000); // Change image every 3 seconds
}
</script> -->
<!-- ***** About End ***** -->
</body>
</html>