-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header>
<div class="header-container">
<div class="left-header">
<h1>International Writers</h1>
</div>
<div class="right-header">
<a href="register.html" class="header-button">Register</a>
<a href="login.html" class="header-button">Login</a>
</div>
</div>
</header>
<main>
<div class="logo">
<img src="logo.png" alt="Logo">
</div>
<h2>Welcome to International Writers</h2>
<section class="info-section workshops">
<h3>Workshops</h3>
<p>Join our interactive workshops to enhance your writing skills. Learn from experienced writers and collaborate with peers.</p>
</section>
<section class="info-section writing-resources">
<h3>Writing Resources</h3>
<p>Access a vast collection of writing resources, including guides, templates, and articles to help you improve your craft.</p>
</section>
<section class="info-section personalized-feedback">
<h3>Personalized Writing Feedback</h3>
<p>Get personalized feedback on your writing from professional editors and writers. Improve your work with constructive criticism.</p>
</section>
</main>
<footer>
<div class="footer-container">
<div class="social-media">
<a href="https://twitter.com"><i class="fab fa-twitter"></i></a>
<a href="https://facebook.com"><i class="fab fa-facebook-f"></i></a>
<a href="https://wa.me"><i class="fab fa-whatsapp"></i></a>
<a href="https://linkedin.com"><i class="fab fa-linkedin-in"></i></a>
</div>
<a href="conduct.html" class="footer-button">Contact Us</a>
<p>© 2024 International Writers. All rights reserved.</p>
</div>
</footer>
</body>
</html>