-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (50 loc) · 2.26 KB
/
index.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>MyExcel</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/excel.css">
</head>
<body>
<header>
<!-- <h1>MyExcel - The way we make our own formulas...</h1> -->
</header>
<section>
<div class="excel-header">
<div class="excel-header button" title="Archive">
<div><i class="fa fa-file-o"></i></div>
<div class="caption">New file</div>
</div>
<div class="excel-header button" title="Open">
<div><i class="fa fa-folder-open-o"></i></div>
<div class="caption">Open file</div>
</div>
<div class="excel-header button">
</div>
<div id="headphones" class="excel-header button" title="Open">
<div><i id="playIcon" class="fa fa-play"></i></div>
<div class="caption">Some ♫</div>
</div>
</div>
<div class="excel-content">
<table id="excel">
</table>
</div>
<table class="excel">
</table>
<audio id="audio1">
<source src="resources/music/Stranger Things V1.mp3">
</audio>
</section>
<footer>
<div class="footer"><a href="https://www.linkedin.com/in/daniel-alcal%C3%A1-valera-0b665896/">ALDAVA</a> © 2018 is making this possible.</div>
</footer>
</body>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="js/excel.js"></script>
</html>