forked from jjyepez/regex-web-scraping
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (21 loc) · 726 Bytes
/
index.html
File metadata and controls
24 lines (21 loc) · 726 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>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Juegos PS4 con descuento</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Juegos de PS4 con +40% descuento en ML</h1>
<div id="fecha"></div>
<div id="resultados">
<div id="cargando"></div>
</div>
<div class="pie">Demostración de Web Scraping con Javascript y Expresiones Regulares.</div>
<div class="by">by @jjyepez</div>
<script src="index.js"></script>
</body>
</html>