-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtextos.html
More file actions
24 lines (23 loc) · 1005 Bytes
/
Copy pathtextos.html
File metadata and controls
24 lines (23 loc) · 1005 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Textos</title>
<script type="text/javascript" src="jquery-3.5.1.slim.min.js"></script>
<script type="text/javascript" src="Textos.js"></script>
</head>
<body>
<h1>Texto con Jquery</h1>
<input type="text" id="add_link"><br>
<button id="add_button">Agregar Link Al Final</button>
<button id="add_After">Agregar Link Al Principio</button>
<ul id="list">
<li><a href="https://www.google.com/webhp?hl=es&sa=X&ved=0ahUKEwiJws7I1I3YAhVIQpAKHXxMDnAQPAgD" title="Google"></a></li>
<li><a href="https://www.facebook.com/" title="Facebook"></a></li>
<li><a href="https://www.youtube.com/?hl=es-419" title="Youtube"></a></li>
<li><a href="https://web.whatsapp.com/" title="Whatsapp"></a></li>
<li><a href="https://github.com/github" title="Github"></a></li>
</ul>
</body>
</html>