-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestSpreadsheet.html
102 lines (83 loc) · 3.94 KB
/
TestSpreadsheet.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<!-- Schuyler Meyer Website 2.0 -->
<html lang="en-US">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YMYCWX2SRC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YMYCWX2SRC');
</script>
<meta charset="UTF-8">
<meta name="description" content="Schuyler Meyer /\\ SchuyTyr Media — Photography, Animation, Game Developer, VR, Software Engineering, Web Development, Design">
<meta name="keywords" content="Photography,Digital Art,Game Design,VR,Software,Engineering,Animation,Schuyler Meyer,Schuyler,Meyer,Skyler,SchuyTyr,SchuyTyr Art,SchuyTyr Media,Design,Developer">
<meta name="author" content="Schuyler Meyer">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="index,follow">
<meta name="twitter:card" content="summary_large_image"><!-- required -->
<meta name="twitter:site" content="@schuylermeyer24"><!-- required -->
<meta name="twitter:creator" content="@schuylermeyer24"><!-- optional -->
<meta name="twitter:title" content="Schuyler Meyer /\\ SchuyTyr Media"><!-- required -->
<meta name="twitter:description" content="Photography, Animation, Game Developer, VR, Software Engineering, Web Development, Design"><!-- optional -->
<meta name="twitter:image" content="https://www.schuylermeyer.com/src/img/TwitPhoto_2x1.jpg"><!-- optional -->
<meta name="twitter:image:alt" content="Schuyler Meyer /\\ SchuyTyr Media"><!-- optional -->
<title>Test - Spreadsheet</title>
<link href="stylesSM.css" rel="stylesheet">
<link href="stylesSM2.css" rel="stylesheet">
<link href="stylesOther.css" rel="stylesheet">
<link href="src/icons/SMLogo2022.ico" rel="shortcut icon">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Audiowide&family=Merienda&family=Orbitron&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.typekit.net/ozq0omu.css"> <!-- Adobe font - nasalization -->
<!-- End Fonts -->
<script src="src/js/footer-main.js" type="text/javascript" defer></script>
<script src="src/js/fantasy-tables.js" type="text/javascript" defer></script>
<script src="src/js/tableSort.js" type="text/javascript" defer></script>
</head>
<body>
<button id="myBtn" onclick="topFunction()" title="Go to the top"><span>↑</span></button>
<header>
<h1 title="Schuyler Meyer">
<a href="index.html">
<img alt="Schuyler Meyer" class="imgLogo" src="src/img/SMSignLogo2021.png">
</a>
</h1>
<hr class="rounded">
</header>
<main>
<div class="fs_title" title="Standings" style="color: #d4d4d4;">
<u>_Standings_</u>
</div>
<div id="standings" class="taybel"></div>
<br><br><br><br>
<div class="fs_title" title="Players" style="color: #d4d4d4;">
<u>_Players_</u>
</div>
<div id="players" class="taybel"></div>
</main>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script type="text/javascript"charset="utf-8">
let url = "https://www.schuylermeyer.com/src/files/TestWebxSheet.csv";
d3.csv(url, function(data) {
var parsedCSV = d3.csv.parseRows(data);
var container = d3.select("body")
.append("table")
.selectAll("tr")
.data(parsedCSV).enter()
.append("tr")
.selectAll("td")
.data(function(d) { return d; }).enter()
.append("td")
.text(function(d) { return d; });
});
</script>
<div id="footer-main"></div>
<script src="hideText.js"></script>
<script src="scrollToTop.js"></script>
<script src="src/js/fadeScroll.js"></script>
</body>
</html>