-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (100 loc) · 4.81 KB
/
Copy pathindex.html
File metadata and controls
112 lines (100 loc) · 4.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Playfair+Display&family=Poppins:wght@200;400;700&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="favicon1.jpg" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<link rel="stylesheet" href="jscript.js">
<title>Dream Big</title>
</head>
<body>
<div class="wrapper">
<header>
<h2 class="logo">Dream Big</h2>
<nav>
<ul>
<li class="navbar-toggle"><i class="fa-solid fa-bars"></i></li>
<li><a href="#" class="active">Home</a></li>
<li><a href="/Blog.html">Blog</a></li>
<li><a href="/Contacts.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div class="left-col">
<h1>“Man cannot discover new oceans unless he has the courage to lose sight of the shore.”</h1>
<p class="subhead">
Kia Ora - I'm Ann. Adventurer, Instagrammer and New Zealand travel planning expert living in Queenstown, NZ. Founder of Dream Big - New Zealand's largest travel planning & booking website.
</p>
<a href="/Blog.html" class="primary-cta">Read more</a>
<br> <br> <br>
<div class="container">
<form class="contact-content" action="https://httpbin.org/post" method="post">
<h2>Contact Us</h2>
<div class="input-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="input-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="input-group">
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
</div>
<button type="submit" formmethod="post" formaction="https://httpbin.org/post">Submit</button>
</form>
</div>
</div>
<div class="right-col">
<div class="card card1">
<div class="card-details">
<div>
<a href="blog1.html" class="product-title">100 Travel Tips for Montenegro</a>
<p>June 10, 2023</p>
</div>
</div>
</div>
<div class="card card2">
<div class="card-details">
<div>
<a href="blog2.html" class="product-title">Do's and Don't in Italy</a>
<p>May 15, 2023</p>
</div>
</div>
</div>
<div class="card card3">
<div class="card-details">
<div>
<a href="blog3.html" class="product-title">Beautiful New Zealand</a>
<p>March 01, 2023</p>
</div>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<div class="social-icons">
<a href="https://www.facebook.com/Web4YouInc/" class="social-icon"><i class="fab fa-facebook"></i></a>
<a href="https://twitter.com/you_web4/" class="social-icon"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/company/web4you-inc/" class="social-icon"><i class="fab fa-instagram"></i></a>
</div>
<p>© 2023 My Website. All rights reserved.</p>
</div>
</footer>
</div>
</body>
</html>