-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (44 loc) · 2.98 KB
/
Copy pathindex.html
File metadata and controls
55 lines (44 loc) · 2.98 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A personal project made by carma12 with a set of Javascript snippets.">
<meta name="keywords" content="javascript, project, application, jspills, javascript, html, css, carma12">
<meta http-equiv="author" content="carma12">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/index.css" media="screen"/>
<link rel="stylesheet" type="text/css" href="css/main.css" media="screen"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon_main/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon_main/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon_main/favicon-16x16.png">
<link rel="manifest" href="images/favicon_main/site.webmanifest">
<title>JS Pills</title>
</head>
<body>
<div class="content-heading">
<h1 class="title display-1 text-center">JS Pills</h1>
<img src="images/pill.png" class="pills-main img-fluid rounded float-center mx-auto d-block" alt="">
<h4 class="subtitle display-4 text-center">Useful Javascript code snippets</h4>
</div>
<main role="main" class="container rounded mb-0 text-center grey-back container-small container-padding-text">
<ul class="list-group list-group-flush ">
<li class="list-group-item grey-back projects-font"><a class="text-info" href="html/highlight.html">Highlighting text</a></li>
<li class="list-group-item grey-back projects-font"><a class="text-info" href="html/landing.html">Landing page</a></li>
<li class="list-group-item grey-back projects-font"><a class="text-info" href="html/piano.html">Piano</a></li>
<li class="list-group-item grey-back projects-font"><a class="text-info" href="html/notes.html">Notes</a></li>
<li class="list-group-item grey-back projects-font"><a class="text-info" href="html/crud.html">CRUD Application</a></li>
<li class="list-group-item grey-back projects-font"><a class="text-info" href="html/tour.html">Tour</a></li>
</ul>
</main>
<footer id="footer" class="page-footer font-small pt-4 align-bottom">
<div class="footer-copyright text-center py-3">
Made with <i class="fa fa-heart fa_custom"></i> - Carla Martínez Poveda <a href="https://github.com/carma12" class="icon" target="_blank" title="github"><i class="fa fa-github"></i> </a>
</div>
</footer>
</body>
</html>