-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsite.html
More file actions
149 lines (145 loc) · 4.2 KB
/
website.html
File metadata and controls
149 lines (145 loc) · 4.2 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Loupe Landing Page</title>
<link rel="icon" href="iconweb.ico" type="image/x-icon">
<style>
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f8d0c2;
background-image: url('backgroundweb.png');
background-size: cover;
background-position: center;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
max-height: 80px;
width: auto;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
}
.logo {
font-weight: bold;
font-size: 24px;
color: #333;
}
nav a {
margin-left: 20px;
text-decoration: none;
color: #333;
}
.cta-button {
background-color: #fff;
color: #333;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.hero {
display: flex;
justify-content: space-between;
align-items: center;
padding: 50px 0;
}
.hero-text {
flex: 1;
}
.hero-text h1 {
font-size: 48px;
color: #3C3828;
margin-bottom: 20px;
overflow: hidden;
border-right: .15em solid #BD2126;
white-space: nowrap;
margin: 0 auto;
letter-spacing: .15em;
animation:
typing 3.5s steps(40, end),
blink-caret .75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #BD2126; }
}
.hero-text p {
font-size: 18px;
color: #3C3828;
margin-bottom: 30px;
}
.hero-image {
flex: 1;
text-align: right;
}
.hero-image img {
max-width: 100%;
height: auto;
}
.pdf-viewer {
margin-top: 50px;
width: 100%;
height: 600px;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="logo">
<img src="loupelogo.png" alt="Loupe Logo">
</div>
<nav>
<a href="#">WRITERS</a>
<a href="#">READERS</a>
<a href="#">CAREERS</a>
<a href="#">YOUR LOUPES</a>
<button class="cta-button">GET STARTED</button>
</nav>
</header>
<div class="hero">
<div class="hero-text">
<h1>Welcome to Loupe</h1>
<p>A startup for making reading and writing accessible for all </p>
<button class="cta-button">GET STARTED</button>
</div>
</div>
<div class="pdf-viewer">
<embed id="pdfViewer" type="application/pdf" width="100%" height="600px">
</div>
</div>
<script>
function loadPDF() {
var viewer = document.getElementById('pdfViewer');
viewer.src = 'Loupe Startup - Guidelines.pdf#page=1&view=FitH&pagemode=bookmarks';
viewer.setAttribute('view', 'FitH');
viewer.setAttribute('pagemode', 'thumbs');
viewer.setAttribute('scrollbar', '0');
viewer.setAttribute('toolbar', '0');
viewer.setAttribute('statusbar', '0');
viewer.setAttribute('navpanes', '0');
}
window.onload = loadPDF;
</script>
</body>
</html>