-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring.html
More file actions
33 lines (28 loc) · 834 Bytes
/
string.html
File metadata and controls
33 lines (28 loc) · 834 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Tech Blog</title>
<link rel="stylesheet" href="styles.css">
<script src="string.js"></script>
</head>
<body>
<header>
<h1>JavaScript Strings</h1>
<h2>String Manipulation in JavaScript</h2>
<p>Check the console for output</p>
<button onclick="stringConcat()">Click to invoke Javascript</button>
</header>
<main>
<article>
<h2>String Concatenation</h2>
<p>String concatenation is the process of joining two or more strings together. In JavaScript, you can concatenate
strings using the + operator or template literals.</p>
</article>
<footer>
<hr />
<p>© 2025 Javascript</p>
</footer>
</main>
</html>