-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (66 loc) · 2.36 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
<!DOCTYPE html>
<html>
<title>Proprietary.ai</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<style>
body,h1 {font-family: "Raleway", sans-serif}
body, html {height: 100%}
.bgimg {
background-image: url('Merging%20Companies%20via%20Acquisition.jpg');
min-height: 100%;
background-position: center;
background-size: cover;
}
.bgblur {
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
background-color: rgba(150, 150, 150, 0.4);
border-radius: 20px;
padding: 0 20px;
}
input[type=button], input[type=submit], input[type=reset] {
background-color: #04AA6D;
border: none;
color: white;
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}
input[type=text], input[type=email]{
width: 50%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
</style>
<body>
<div class="bgimg w3-display-container w3-animate-opacity w3-text-white">
<div class="w3-display-topleft w3-padding-large w3-xlarge bgblur">
<img src="Acqwire%20Logo%20v1%20-%20white%20(300x100)-02.png"/>
</div>
<div class="w3-display-middle bgblur" style="top: max(50%,350px);max-width:615px">
<h1 class="w3-jumbo w3-animate-top" style="text-align:center!important">Your proprietary M&A deal engine</h1>
<hr class="w3-border-grey" style="margin:auto;width:40%">
<p class="w3-large w3-center" style="text-align:left!important">Have an M&A mandate, but not sure where to start? Acqwire's proprietary sourcing software gets you wired for acquisitions, converting a chaotic world of endless possibilities into prioritized acquisition targets wrapped with the tools, processes and resources every CEO & corporate development professional needs to meet and exceed your M&A goals.</p>
<p class="w3-large w3-center">Request an invitation:</p>
<form style="width:75%;margin: 0 auto;">
<label for="email">email:</label>
<input type="email" id="email" name="email">
<input type="button" value="Submit" onclick="msg()">
</form>
</div>
<div class="w3-display-bottomleft w3-padding-large">
Acqwired.ai
</div>
</div>
<script>
function msg() {
alert("Submission received! (test)");
}
</script>
</body>
</html>