-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 1.67 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
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" />
<title>Excel Clone</title>
</head>
<body>
<div class="menu">
<div class="fxn file">
<i class="fas fa-folder-open"></i>
File
</div>
<div class="fxn home">
<i class="fas fa-home"></i>
Home
</div>
</div>
<div class="menu-options"></div>
<!-- <div class="fontstyle">
<div class="bold"><i class="fas fa-bold"></i></div>
<div class="italic"><i class="fas fa-italic"></i></div>
<div class="underline"><i class="fas fa-underline"></i></div>
</div> -->
<div class="calculations">
<input type="text" id="address" disabled>
<input type="text" id="formula">
</div>
<div class="cell-content"></div>
<div class="sheets">
<div class="add-sheet">
<i class="fas fa-plus"></i>
</div>
<div class="sheet-list">
<div class="sheet active-class" sid='0'>Sheet 1</div>
</div>
</div>
<script src="sheet.js"></script>
<script src="util.js"></script>
<script src="init.js"></script>
<script src="script.js"></script>
</body>
</html>