forked from ezeportela/curso-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
21 lines (18 loc) · 840 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Red Social</title>
<link rel="icon" type="image/png" href="/static/icon.png" sizes="192x192">
<link rel="stylesheet" href="/node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="/node_modules/@fortawesome/fontawesome-free/css/all.css">
<link rel="stylesheet" href="index.css">
<script type="text/javascript" src="node_modules/jquery/dist/jquery.min.js"></script>
<script type="module" src="node_modules/popper.js/dist/popper.min.js"></script>
<script type="text/javascript" src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<h2>Template para el Curso Javascript Frontend del ISSD</h2>
</body>
</html>