-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (53 loc) · 2.87 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Harsh Kale">
<!-- Favicon -->
<link rel="shortcut icon" href="./Img/cpplogo.png" type="image/x-icon">
<!-- Css -->
<link rel="stylesheet" href="Css/style.css">
<link rel="stylesheet" href="Css/buttons.css">
<link rel="stylesheet" href="Css/tables.css">
<link rel="stylesheet" href="Css/utils.css">
<!-- Fonts -->
<!-- *<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&family=Bree+Serif&display=swap" rel="stylesheet"> -->
<title>C++ ~ Introduction</title>
</head>
<body>
<!-- Left-Panel -->
<div class="left-panel">
<div class="leaf">
<h2><p class="p__content"><a href="introduction.html">Introduction</a></p></h2>
</div>
<div class="leaf">
<h2><p class="p__content"><a href="tokens.html">Tokens Of C++</a></p></h2>
</div>
</div>
<!-- Right-Panel -->
<div class="right-panel">
<div class="content">
<div class="img">
<img src="Img/cpplogo.png" alt="Image of the C++ Logo!">
</div>
<div class="information">
<article>
<p class="p__content">C++ was developed by Bjarne Stroustrup, as an extension to the C language.</p>
<p class="p__content">C++ gives programmers a high level of control over system resources and memory.</p>
<p class="p__content">C++ is a cross-platform language that can be used to create high-performance applications.</p>
<br>
<p class="p__content"><strong>Bjarne Stroustrup</strong> at Bell Labs Developed C++ in late 1980s. It's main purpose is to make writing programs easier for real life problems.</p>
<p class="p__content"><i>Editors</i>, <i>compilers</i>, <i>Databases</i>, <i>Communication Systems</i> and any real life complex system can be developed in C++. C++ Programs can be easily maintained and expended. A new feature can be easily added in C++ program. In C++, The elements of GUI (Graphical User Interface) such as menus, windows, appliations, operating systems. can be developed. Now a days the demand for GUI based software is increasing.</p>
<br>
<p class="p__content"><b>Now C++ is becoming very powerful programming language due to its object oriented programming features...</b></p>
</article>
</div>
<a href="tokens.html"><button class="nxt-btn">Next</button></a>
</div>
</div>
</body>
</html>