-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (59 loc) · 2.29 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
<!DOCTYPE html>
<html>
<head>
<title>Orievo</title>
<link rel="shortcut icon" href="images/logo.png"/>
<script src="main.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="main.css">
</head>
<body>
<!-- orievo.com -->
<main>
<section class="section hero">
<div class="hero-content"data-content>
<h1 class="hero-title" font="">
Orievo
</h1>
<h2 class="hero-subtitle">
</h2>
<button type="button" class="hero-button" onclick="scrollToSection('contactus')">
Get Started
</button>
</div>
</section>
<section class="section section-1">
<div id="aboutus" class="section__content"data-content>
</div>
</section>
<section class="section contactus">
<div id="contactus" class="section__content"data-content>
<div class="containercontact">
<h1>Contact Me</h1>
<p>Feel free to contact us and we will get back to you as soon as we can.</p>
<form action="mail.php" method="POST">
<label for="name">Name:</label>
<input autocomplete="off" type="text" name="name" id="name">
<label for="email">Email:</label>
<input autocomplete="off" type="email" name="email" id="email">
<label for="subject">Subject:</label>
<input autocomplete="off" type="text" name="subject" id="subject">
<label for="message">Message</label>
<textarea name="message" cols="30" rows="10"></textarea>
<input type="submit" value="Send">
</form>
</div>
</div>
</section>
<section class="section section-3">
<header class="section__header">
<h3 class="section__title">Explore & Discover</h3>
</header>
<div class="section__content"data-content>
</div>
</section>
</main>
</body>
</html>