Skip to content

Commit 8c6d356

Browse files
authored
Update index.html
1 parent b48a255 commit 8c6d356

File tree

1 file changed

+36
-3
lines changed

1 file changed

+36
-3
lines changed

index.html

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1-
2-
moderncpp course
3-
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Modern C++ Course</title>
7+
<link rel="stylesheet" href="styles.css">
8+
</head>
9+
<body>
10+
<header>
11+
<h1>Modern C++ Course</h1>
12+
</header>
13+
<main>
14+
<section id="about">
15+
<h2>About the Course</h2>
16+
<p>This course covers the latest features and best practices of Modern C++.</p>
17+
</section>
18+
<section id="syllabus">
19+
<h2>Course Syllabus</h2>
20+
<ul>
21+
<li>Introduction to Modern C++</li>
22+
<li>C++11/C++14/C++17 Features</li>
23+
<li>Smart Pointers and Memory Management</li>
24+
<li>Concurrency and Parallelism</li>
25+
</ul>
26+
</section>
27+
<section id="instructors">
28+
<h2>Meet the Instructors</h2>
29+
<p>Our instructors are experienced C++ developers with a passion for teaching.</p>
30+
</section>
31+
</main>
32+
<footer>
33+
<p>&copy; 2023 Modern C++ Course</p>
34+
</footer>
35+
</body>
36+
</html>

0 commit comments

Comments
 (0)