-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathJavascriptCard.html
96 lines (92 loc) · 5.52 KB
/
JavascriptCard.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
96
<!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>JavaScript/STILLLEARN</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="JavaScriptCard.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>JavaScript/STILLLEARN</title>
</head>
<body>
<div class="hero">
<nav>
<h2 class="logo"><span>JavaScript/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/embed/hKB-YGF14SY" 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>JavaScript Learning Page</h1>
</header>
<main>
<section>
<h2><u>Introduction To JavaScrip</u> :</h2>
<p>
JavaScript, often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, often incorporating third-party libraries. All major web browsers have a dedicated JavaScript engine to execute the code on users' devices.
JavaScript is a high-level, often just-in-time compiled language that conforms to the ECMAScript standard. It has dynamic typing, prototype-based object-orientation, and first-class functions. It is multi-paradigm, supporting event-driven, functional, and imperative programming styles. It has application programming interfaces (APIs) for working with text, dates, regular expressions, standard data structures, and the Document Object Model (DOM).
</p>
</section>
<section>
<h2><u> Started with JavaScript</u> : </h2>
<p>In this article we cover the absolute basics of JavaScript. To get you started, this article defines elements, attributes, and all the other important terms you may have heard. It also explains where these fit into HTML. You will learn how HTML elements are structured, how a typical HTML page is structured, and other important basic language features. Along the way, there will be an opportunity to play with HTML too!
</p>
</section>
<section>
<h2><u>Resources for Learning JavaScript</u> :</h2>
<ul>
<li>♦ <a href="https://www.codecademy.com/learn/introduction-to-javascript?" target="_blank">Introduction to JavaScript by Codecademy</a></li>
<li>♦ <a href="https://www.udemy.com/course/programming-in-javascript/" target="_blank">JavaScript Course by Udemy</a></li>
<li>♦ <a href="https://www.coursera.org/learn/javascript?utm_medium=institutions&utm_source=umich&utm_campaign=adwords-web-design-for-everybody-interactivity-with-javascript&utm_term=%2Bjavascript%20%2Bprogramming%20%2Bcourse%20%2Bonline&gclid=" target="_blank">JavaScript by Coursera</a></li>
<li>♦ <a href="https://www.youtube.com/watch?v=jS4aFq5-91M&pp=ygUKamF2YXNjcmlwdA%3D%3D" target="_blank">JavaScript by freeCodeCamp.org</a></li>
</ul>
</section>
</main>
</div>
<footer>
<div class="footer-container" style="margin-left: 10px">
<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>