Untitled
unknown
plain_text
a year ago
4.8 kB
7
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML5 and CSS3 - The Future of Web Programming</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.header-strip {
background-color: #e1e1e1;
padding: 40px 0;
position: relative;
border-bottom: 1px solid #ccc;
}
.header {
max-width: 1000px;
margin: 0 auto;
padding: 10px;
position: relative;
}
.header img {
position: absolute;
top: -30px;
left: -250px;
width: 120px;
height: 120px;
}
.header h1 {
font-size: 40px;
color: #e74c3c;
margin: 0;
text-align: center;
}
.header .subtext {
position: absolute;
top: -10px;
right: 200px;
font-size: 24px;
font-family: 'Georgia', serif;
color: #e74c3c;
max-width: 360px;
text-align: right;
}
.navbar {
text-align: left;
margin-top: 20px;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
padding-left: 15px;
}
.navbar .button {
display: inline-block;
color: white;
font-weight: bold;
text-decoration: none;
padding: 8px 15px;
margin: 5px;
background-color: #ff6f3f;
border-radius: 5px;
}
.navbar .button:hover {
background-color: #ff5a1f;
}
.introduction-strip {
background-color: #e1e1e1;
margin: 20px auto;
padding: 10px 15px;
width: 1000px;
display: flex;
justify-content: space-between;
align-items: center;
}
.back-button {
font-size: 16px;
}
.back-button a {
text-decoration: none;
color: black;
}
.forward-button {
font-size: 16px;
}
.forward-button a {
text-decoration: none;
color: black;
}
.introduction {
margin-right: -850px;
}
.content {
max-width: 1000px;
margin: 20px auto;
padding: 0 15px;
}
.content h2 {
color: #000;
font-size: 28px;
margin-bottom: 20px;
}
.content p {
line-height: 1.6;
font-size: 16px;
color: #000;
}
.content .highlight {
font-weight: bold;
}
</style>
</head>
<body>
<div class="header-strip">
<div class="header">
<img src="HTML5.png" alt="HTML5 Logo">
<h1>The Future of Web Programming</h1>
<div class="subtext">HTML5 and CSS3</div>
</div>
</div>
<div class="navbar">
<a href="#" class="button">Course</a>
<a href="#" class="button">Lessons</a>
<a href="#" class="button">Exercises</a>
</div>
<div class="introduction-strip">
<div class="back-button">
<a href="#"><<</a>
</div>
<div class="introduction">
<a href="#">Introduction</a>
</div>
<div class="forward-button">
<a href="#">>></a>
</div>
</div>
<div class="content">
<h2>About HTML5 and CSS3 - The Future of Web Programming</h2>
<p>This website is designed to serve as a first course in undergraduate web standards in computer science curriculum. Besides the basic concepts of web standards, the new features of HTML5 and CSS3 are also introduced.</p>
<p><span class="highlight">In no way</span> this website must be considered as a complete self-learning course. <span class="highlight">The aim of this website is to help to teach a classroom course.</span> However, it is possible to use it as a guide for self-learning, but with a great effort.</p>
<p>Topics covered include: current web development, web standards, World Wide Web Consortium (W3C), markup languages, HTML5, and CSS3.</p>
<p>You should expect to spend approximately 30 hours on this course.</p>
</div>
</body>
</html>
Editor is loading...
Leave a Comment