Skip to content

Commit b34de9f

Browse files
update
1 parent b2785b0 commit b34de9f

10 files changed

Lines changed: 524 additions & 191 deletions

File tree

cpp.html

Lines changed: 53 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
<!-- CSS -->
2626

27-
<link rel="stylesheet" href="python_styles.css">
27+
<link rel="stylesheet" href="cpp_styles.css">
2828
</head>
2929

3030
<body>
@@ -68,15 +68,15 @@
6868

6969
<div class="header row">
7070
<div class="lang-img col-md-2">
71-
<img src="logo/python.png" alt="" class="cpp-img">
71+
<img src="logo/cpp.png" alt="" class="cpp-img">
7272
</div>
7373

7474
<div class="header-content col-md-6">
75-
<h1 class="header-heading">Learn Python Programming</h1>
75+
<h1 class="header-heading">Learn C++ Programming</h1>
7676

7777

78-
<p>Python is a powerful general-purpose programming language. It is used in web development, data science, creating software prototypes, and so on. Fortunately for beginners, Python has simple easy-to-use syntax. This makes Python an excellent
79-
language to learn to program for beginners.<br> <br>Our Python tutorial will guide you to learn Python one step at a time.</p>
78+
<p>C++ is a powerful general-purpose programming language. It can be used to develop operating systems, browsers, games, and so on. C++ supports different ways of programming like procedural, object-oriented, functional, and so on. This makes
79+
C++ powerful as well as flexible.<br> <br>Our C++ programming tutorial will guide you to learn C++ programming one step at a time.</p>
8080

8181
</div>
8282
</div>
@@ -90,83 +90,100 @@ <h1 class="header-heading">Learn Python Programming</h1>
9090
<div class="col-lg-4 col-md-6">
9191
<div class="card language-card">
9292
<div class="card-header">
93-
<h4>Python Introduction
93+
<h4>C++ Introduction
9494
</h4>
9595
</div>
9696
<div class="card-body" ">
9797
<ul>
9898
<li>
99-
<a href="python/1.html " id=" links ">Getting Started</a>
99+
<a href="cpp/1.html " id=" links ">C++ Variables and Literals</a>
100100
</li>
101101
<li>
102-
<a href="# " id=" links ">Keyword and Identifiers</a>
102+
<a href="# " id=" links ">C++ Data Types</a>
103103
</li>
104104
<li>
105-
<a href="# " id=" links ">Statements & Comments</a>
105+
<a href="# " id=" links ">C++ Basic I/O</a>
106106
</li>
107107
<li>
108-
<a href="# " id=" links ">Python Variables</a>
108+
<a href="# " id=" links ">C++ Type Conversion</a>
109109
</li>
110110
<li>
111-
<a href="# " id=" links ">Python Datatypes</a>
111+
<a href="# " id=" links ">C++ Operators</a>
112+
</li>
113+
<li>
114+
<a href="# " id=" links ">C++ Comments</a>
112115
</li>
113116
</ul>
114117
</div>
115118
</div>
116119
</div>
120+
117121
<div class="col-lg-4 col-md-6 ">
118122
<div class="card language-card ">
119123
<div class="card-header ">
120-
<h4>Python Introduction
124+
<h4>C++ Flow Control
121125
</h4>
122126
</div>
123127
<div class="card-body " ">
124128
<ul>
125129
<li>
126-
<a href="# " id=" links ">Getting Started</a>
130+
<a href="# " id=" links ">C++ if...else</a>
131+
</li>
132+
<li>
133+
<a href="# " id=" links ">C++ switch Statement</a>
134+
</li>
135+
<li>
136+
<a href="# " id=" links ">C++ for Loop</a>
137+
</li>
138+
<li>
139+
<a href="# " id=" links ">C++ do...while Loop</a>
140+
</li>
141+
142+
<li>
143+
<a href="# " id=" links ">C++ break & Continue</a>
127144
</li>
128145
<li>
129-
<a href="# " id=" links ">Keyword and Identifiers</a>
146+
<a href="# " id=" links ">C++ goto Statement</a>
130147
</li>
131148
</ul>
132149
</div>
133150
</div>
134151
</div>
135-
<div class="col-lg-4 col-md-6">
136-
<div class="card language-card">
137-
<div class="card-header">
138-
<h4>Python Introduction
139-
</h4>
140-
</div>
141-
<div class="card-body" ">
142-
<ul>
143-
<li>
144-
<a href="# " id=" links ">Getting Started</a>
145-
</li>
146-
<li>
147-
<a href="# " id=" links ">Keyword and Identifiers</a>
148-
</li>
149-
</ul>
150-
</div>
151-
</div>
152-
</div><div class="col-lg-4 col-md-6 ">
152+
<div class="col-lg-4 col-md-6 ">
153153
<div class="card language-card ">
154154
<div class="card-header ">
155-
<h4>Python Introduction
155+
<h4>C++ Functions
156156
</h4>
157157
</div>
158158
<div class="card-body " ">
159159
<ul>
160160
<li>
161-
<a href="# " id=" links ">Getting Started</a>
161+
<a href="# " id=" links ">C++ Functions</a>
162+
</li>
163+
<li>
164+
<a href="# " id=" links ">C++ Function Types</a>
165+
</li>
166+
<li>
167+
<a href="# " id=" links ">C++ Function Overloading</a>
168+
</li>
169+
<li>
170+
<a href="# " id=" links ">C++ Default Argument</a>
171+
</li>
172+
<li>
173+
<a href="# " id=" links ">C++ Storage Class</a>
174+
175+
</li>
176+
<li>
177+
<a href="# " id=" links ">C++ Recursion</a>
162178
</li>
163179
<li>
164-
<a href="# " id=" links ">Keyword and Identifiers</a>
180+
<a href="# " id=" links ">C++ Return Reference</a>
165181
</li>
166182
</ul>
167183
</div>
168184
</div>
169185
</div>
186+
170187
</div>
171188
</section>
172189
<center><br>
@@ -200,7 +217,7 @@ <h5>More Topics Uploading soon...</h5>
200217

201218
<footer class="container-fluid ">
202219
<h4>Made with <i style="color:red " class="fa fa-heart "></i> By - Team CodeMistic</h4>
203-
<p class="foot">&#169 Copyright : Team CodeMistic</p>
220+
<p class="foot ">&#169 Copyright : Team CodeMistic</p>
204221
<div class="footer-links ">
205222
<h7>Connect With Us</h7><br><br>
206223
<a href="https://www.facebook.com/codemistic " target="_blank "><i class="icons fa-2x fab fa-facebook "

0 commit comments

Comments
 (0)