-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcppcard.html
95 lines (91 loc) · 4.95 KB
/
cppcard.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!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 charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>C++/STILLLEARN</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="C++Card.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100; 0,30
0;0,400;0,500;0, 600;0, 700; 1,100; 1, 200; 1,300; 1,400; 1,500; 1,600; 1,700&family=Montserrat:
wght@700; 800; 900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
<title>C++/STILLLEARN</title>
</head>
<body>
<div class="hero">
<nav>
<h2 class="logo"><span>C++/STILLLEARN</span></h2>
<ul>
<li><a href="index.html" class="animated">Home</a></li>
<li><a href="about.html" class="animated">About</a></li>
<li><a href="contact.html" class="animated">Contact</a></li>
</ul>
</nav>
</div>
<div class="content1">
<div class="embed-container" style="width: 92%; background-color: grey;;">
<iframe width="942" height="530" src="https://www.youtube.com/watch?v=yGB9jhsEsr8" title="YouTube Video Player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<header>
<h1>C++ Learning Page</h1>
</header>
<main>
<section>
<h2>Introduction to C++</h2>
<p>
C++ is a high-level, general-purpose programming language created by Danish computer scientist Bjarne Stroustrup. First released in 1985 as an extension of the C programming language, it has since expanded significantly over time; modern C++ currently has object-oriented, generic, and functional features, in addition to facilities for low-level memory manipulation. It is almost always implemented as a compiled language, and many vendors provide C++ compilers, including the Free Software Foundation, LLVM, Microsoft, Intel, Embarcadero, Oracle, and IBM.
</p>
</section>
<section>
<h2>Getting Started with C++</h2>
<p>In this article we cover the absolute basics of C++. To get you started, one of the best ways to learn how to program in a new language is by looking at lots and lots of example programs. The best thing to do is to copy and paste each program below into a text file and compile it. Then, try the experiments. By extending these example programs, you will gain familiarity with different aspects of C++, and you will feel more confident when it comes time to write programs from scratch.
</p>
</section>
<section>
<h2>Resources for Learning C++</h2>
<ul>
<li><a href="https://www.codecademy.com/learn/learn-c-plus-plus" target="_blank">Introduction to C++ by Codecademy</a></li>
<li><a href="https://www.udemy.com/topic/c-plus-plus/" target="_blank">C++ Course by Udemy</a></li>
<li><a href="https://www.coursera.org/courses?query=c%2B%2B" target="_blank">C++ by Coursera</a></li>
<li><a href="https://www.youtube.com/watch?v=vLnPwxZdW4Y" target="_blank">C++ by freeCodeCamp.org</a></li>
</ul>
</section>
</main>
</div>
<footer>
<div class="footer-container" style="margin-left: 350px">
<div class="footer-row">
<div class="footer-col">
<ul>
<li><a href="https://www.instagram.com/iamayushshandilya/" target="_blank">
<h1><i class="fa-brands fa-instagram fab"></i></h1>
</a></li>
</ul>
</div>
<div class="footer-col">
<ul>
<li><a href="https://github.com/ayush-Shandilya" target="_blank">
<h1><i class="fa-brands fa-github fab"></i></h1>
</a></li>
</ul>
</div>
<div class="footer-col">
<ul>
<li><a href="https://www.linkedin.com/in/ayush-shandilya-220610253/" target="_blank">
<h1><i class="fa-brands fa-linkedin fab"></i></h1>
</a></li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>