-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex1.html
More file actions
71 lines (58 loc) · 2.61 KB
/
index1.html
File metadata and controls
71 lines (58 loc) · 2.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thapar Academy</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Section -->
<header>
<h1>Thapar Coding Academy Patiala</h1>
<nav style="background-color:magenta">
<ul>
<li><a href="#courses">Courses</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="hero">
<h2>Start Your Coding Journey</h2>
<p>Learn programming with us, build your career, and achieve your dreams.</p>
<a href="#courses" class="btn">Get Started</a>
</section>
<section id="courses" class="section">
<h2>Our Popular Courses</h2>
<div class="course">
<h3>HTML Basics</h3>
<p>Learn how to build websites from scratch using HTML.</p>
</div>
<div class="course">
<h3>CSS Fundamentals</h3>
<p>Get hands-on with CSS and learn to make interactive web pages.</p>
</div>
<div class="course">
<h3>C++ Programming</h3>
<p>Master C++ and solve real-world problems with ease.</p>
</div>
</section>
<section id="about" class="section">
<h2>About Us</h2>
<p>Thapar CodingAcademy is a platform dedicated to teaching coding skills to beginners and professionals. Our mission is to make learning accessible to everyone.</p>
</section>
<section id="contact" class="section">
<h2>Contact Us</h2>
<p>Email: support@thapar Coding.com</p>
<p>Phone: +123 456 7890</p>
<h3>Find Us in Patiala, Punjab</h3>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3442.8073639904947!2d76.36212627535764!3d30.356424174767934!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x391028ab86533db5%3A0x93cc1f72eae1c9a8!2sThapar%20Institute%20of%20Engineering%20%26%20Technology!5e0!3m2!1sen!2sin!4v1728208622131!5m2!1sen!2sin" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>"
<h3>Our Campus</h3>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQv-rjK6jgIzgGD9HDBjlQ37hv9WccuZ1nTfg&s" alt="Thapar Institute Campus" width="600px">
</section>
<footer>
<p>© 2024 Thapar Coding Academy. All rights reserved.</p>
</footer>
</body>
</html>