forked from crizanp/static-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJava.html
More file actions
137 lines (127 loc) · 4.1 KB
/
Java.html
File metadata and controls
137 lines (127 loc) · 4.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Driving Lessons Blog</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #77a3d4 3px solid;
}
header a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
}
header li {
float: left;
display: inline;
padding: 0 20px 0 20px;
}
header #branding {
float: left;
}
header #branding h1 {
margin: 0;
}
header nav {
float: right;
margin-top: 10px;
}
#showcase {
min-height: 400px;
background: url('driving.jpg') no-repeat 0 -400px;
text-align: center;
color: #fff;
}
#showcase h1 {
margin-top: 100px;
font-size: 55px;
margin-bottom: 10px;
}
#showcase p {
font-size: 20px;
}
.main-content {
padding: 20px;
background: #fff;
}
footer {
padding: 20px;
margin-top: 20px;
color: #fff;
background-color: #333;
text-align: center;
}
</style>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Driving School</h1>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class="container">
<h1>Welcome to Our Driving School</h1>
<p>Learn to drive with confidence and safety with our expert instructors.</p>
</div>
</section>
<div class="container main-content">
<h2>All About Our Driving Lessons</h2>
<p>At our driving school, we offer comprehensive driving lessons tailored to meet your individual needs. Whether you are a complete beginner or looking to refresh your skills, our experienced instructors are here to help you every step of the way.</p>
<h3>Why Choose Us?</h3>
<ul>
<li>Experienced and certified instructors</li>
<li>Flexible scheduling to fit your busy life</li>
<li>Modern, dual-control vehicles for safety</li>
<li>Competitive pricing with no hidden fees</li>
</ul>
<h3>What to Expect</h3>
<p>Our lessons are designed to provide you with the skills and knowledge necessary to become a safe and confident driver. Each lesson includes:</p>
<ul>
<li>Basic driving techniques and maneuvers</li>
<li>Understanding traffic laws and regulations</li>
<li>Safe driving practices</li>
<li>Preparation for the driving test</li>
</ul>
<p>We believe that learning to drive should be an enjoyable and stress-free experience. Our friendly instructors are patient and supportive, ensuring that you feel comfortable behind the wheel.</p>
<h3>Contact Us</h3>
<p>Ready to start your driving journey? Contact us today to schedule your first lesson!</p>
<p>Email: info@drivingschool.com | Phone: (123) 456-7890</p>
</div>
<footer>
<p>Driving School © 2024</p>
</footer>
</body>
</html>