-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring.html
More file actions
29 lines (26 loc) · 975 Bytes
/
string.html
File metadata and controls
29 lines (26 loc) · 975 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
<!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>String</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="navbar">
<ul class="nav">
<li class="nav-item"><a href="index.html" title="Home">Home</a></li>
<li class="nav-item"><a href="variable.html" title="Variable">Variable</a></li>
<li class="nav-item"><a href="string.html" title="String" class="active">String</a></li>
<li class="nav-item"><a href="query.html" title="QueryString">QueryString</a></li>
<li class="nav-item"><a href="js_library.html" title="JS Library">JS Library</a></li>
</ul>
</div>
<div class="content">
</div>
<div class="footer">
<p> © 2021 by Kiều Sơn </p>
</div>
</body>
</html>