-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractice-lec1.html
62 lines (36 loc) · 1.8 KB
/
practice-lec1.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
<!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">
<title>JavaScript</title>
</head>
<body>
<h1 id="head1"> <!--inner part of html--> 1.Java is the programming language that underpins all Android development</h1>
<h2 class="head2">2.Understanding of XML. XML was created as a standard way to encode data for internet-based mobile applications.</h2>
<h2>3. Android SDK</h2>
<h3>4. Android Studio. </h3>
<h3>5. APIs.</h3>
<h3>6. Databases.</h3>
<script>
// Methods ( display Output in javascript)
//Javascript is used both server and client side
// JS is used to change the Behaviour of website(html behaviour change )
// No Need For any Compiler.
// 1. document.write means show all documents written in html code.
document.write("Java , Kotlin , Swift");
document.getElementById("head1").innerHTML =" Flutter means SDK software development kit";
// document.getElementsByClassName("head2").innerHTML ="Dart programming language provide UI elements";
// This function will display text in a dialog box that pops up on the screen. Before this function can work, we must first call the showAlert() function. JavaScript functions are called in response to events.
alert("Danger Zone");
// display output in javascript
console.log("Software development life cycle 1990");
var name=`maa"z`
<!-- Backticks are an ES6 feature that allows you to
create strings in JavaScript. Although backticks are mostly used for HTML or code embedding purposes, they also act similar to
single and double quotes. Besides, using backticks makes it easier for string operations. -->
console.log(name);
</script>
</body>
</html>