-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataVisual.html
More file actions
103 lines (74 loc) · 4.29 KB
/
dataVisual.html
File metadata and controls
103 lines (74 loc) · 4.29 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
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
103
<!DOCTYPE html>
<html>
<head>
<title>Data Visualization Work</title>
<meta name = "viewport" content = "width=device-width, initial-scale=1,
maximum-scale=1, minimum-scale=1"/>
<link href="https://fonts.googleapis.com/css2?family=Russo+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&family=Russo+One&display=swap"
rel="stylesheet">
<link rel = "stylesheet" type = "text/css" href = "main.css">
<link id = "theme-style" rel="stylesheet" type="text/css" href="">
</head>
<body>
<section class = "s1">
<div class = "main-container">
<div class = "greeting-wrapper">
<h1>Data Visualization Work </h1>
</div>
<div class = "intro-wrapper">
<div class ="nav-wrapper">
<div class ="dots-wrapper">
<div id = "dot-1" class = "browser-dot"></div>
<div id = "dot-2" class = "browser-dot"></div>
<div id = "dot-3" class = "browser-dot"></div>
</div>
<ul id ="navigation">
<li><a href ="contact.html">Contact</a></li>
<li><a href = "index.html">Home</a></li>
</ul>
</div>
<div class ="left-column">
<img id = "profile_pic" src = "images/Portfolio Website/profile-pic.jpg">
<h5 style = "text-align: center; line-height: 0;">Personalize Theme</h5>
<div id = "theme-options-wrapper">
<div data-mode="blue" id ="blue-mode" class="theme-dot"></div>
<div data-mode="pink" id ="pink-mode" class="theme-dot"></div>
<div data-mode="green" id ="green-mode" class="theme-dot"></div>
<div data-mode="purple" id ="purple-mode" class="theme-dot"></div>
<div data-mode="skyblue" id ="skyblue-mode" class="theme-dot"></div>
<div data-mode= "neongreen" id ="neongreen-mode" class="theme-dot"></div>
<div data-mode= "yellow" id ="yellow-mode" class ="theme-dot"></div>
<div data-mode= "orange" id = "orange-mode" class="theme-dot"></div>
<div data-mode="light" id = "light-mode" class = "theme-dot"></div>
</div>
<p id = "settings-note">You can change the color of the home page by
<br>clicking the buttons!</p>
</div>
<div class ="right-column">
<div id ="preview-shadow">
<div id ="preview">
<div id = "corner-tl" class="corner"></div>
<div id = "corner-tr" class="corner"></div>
<h3>About Me</h3>
<p>I am a software developer who loves coding and building personal projects</p>
<div id = "corner-bl" class="corner"></div>
<div id = "corner-br" class="corner"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class = "s2">
<div class = "main-container">
<div class="about-wrapper"></div>
<div>
<h4>About</h4>
<p>These are all of the projects I have done for the class, Data Visualization </p>
<h5>Gephi</h5>
<h5>Tableu</h5>
<h4>Documentation</h4>
<script type = "text/javascript" src="script.js"></script>
</body>
</html>