-
Notifications
You must be signed in to change notification settings - Fork 0
/
articulo.html
executable file
·29 lines (27 loc) · 1021 Bytes
/
articulo.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="articulo.css" />
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css" />
<title>Artículo</title>
</head>
<body onload="cargararticulo()">
<a href="Landing.html"><div class="header"><img src="img/logo.png" alt="" /></div></a>
<div class="contentarticulo" id="contentarticulo">
</div>
<div class="footer">
<img src="img/logo.png" alt="" />
<div class="rs">
<span class="fa fa-facebook-square fa-2x"></span>
<span class="fa fa-twitter fa-2x"></span>
<span class="fa fa-instagram fa-2x"></span>
<span class="fa fa-youtube-play fa-2x"></span>
<span class="fa fa-rss fa-2x"></span>
</div>
</div>
<script src="main.js" type="text/javascript"></script>
</body>
</html>