-
Notifications
You must be signed in to change notification settings - Fork 0
/
'website.html'..txt
128 lines (119 loc) · 3.96 KB
/
'website.html'..txt
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
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Civil Engineering Mentor</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #4CAF50;
color: white;
padding: 1rem;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #333;
}
nav a {
color: white;
padding: 1rem;
text-decoration: none;
text-align: center;
}
nav a:hover {
background-color: #ddd;
color: black;
}
section {
padding: 2rem;
text-align: center;
}
.about, .classes, .contact {
background-color: white;
margin: 1rem auto;
padding: 2rem;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 800px;
}
.videos iframe {
width: 100%;
height: 400px;
border: none;
margin-bottom: 1rem;
}
.social-media a {
margin: 0 1rem;
text-decoration: none;
color: #333;
font-size: 1.5rem;
}
footer {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 1rem;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Civil Engineering Mentor</h1>
<p>Your Guide to Success in Civil Engineering Government Jobs</p>
</header>
<nav>
<a href="#about">About Us</a>
<a href="#classes">Online Classes</a>
<a href="#videos">Videos</a>
<a href="#contact">Contact</a>
</nav>
<section id="about" class="about">
<h2>About Us</h2>
<p>We are Civil Engineering mentors dedicated to helping students prepare for government jobs in the civil engineering sector. Our online classes provide comprehensive training and guidance to ensure your success.</p>
</section>
<section id="classes" class="classes">
<h2>Online Classes</h2>
<p>Join our online classes to get expert guidance and training. Our courses cover all the necessary topics and provide practical insights to help you excel in your exams.</p>
</section>
<section id="videos" class="videos">
<h2>Our Videos</h2>
<iframe src="https://www.youtube.com/embed/your_video_id" allowfullscreen></iframe>
<iframe src="https://www.youtube.com/embed/your_video_id" allowfullscreen></iframe>
</section>
<section id="contact" class="contact">
<h2>Contact Us</h2>
<form action="mailto:your_email@example.com" method="post" enctype="text/plain">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required><br><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="4" required></textarea><br><br>
<input type="submit" value="Send">
</form>
</section>
<section class="social-media">
<h2>Follow Us</h2>
<a href="https://facebook.com/yourprofile" target="_blank">Facebook</a>
<a href="https://twitter.com/yourprofile" target="_blank">Twitter</a>
<a href="https://instagram.com/yourprofile" target="_blank">Instagram</a>
<a href="https://linkedin.com/in/yourprofile" target="_blank">LinkedIn</a>
</section>
<footer>
<p>© 2024 Civil Engineering Mentor. All rights reserved.</p>
</footer>
</body>
</html>
```