-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
95 lines (84 loc) · 2.96 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
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
<!DOCTYPE HTML>
<!--
Telephasic by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Code Visualization</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="homepage is-preload">
<div id="page-wrapper">
<!-- Header -->
<div id="header-wrapper">
<div id="header" class="container">
<!-- Logo -->
<h1 id="logo"><a href="index.html">CodeVision</a></h1>
<!-- Nav -->
<nav id="nav">
</nav>
</div>
<!-- Hero -->
<section id="hero" class="container">
<header>
<h2>A graphic illustration of code structure in HTML/JAVA</h2>
</header>
<p>Final Project for CS418 in UIUC</p>
<ul class="actions">
<li><a href="#started" class="button">Get started</a></li>
</ul>
</section>
</div>
<!-- Features 1 -->
<div class="wrapper">
<div class="container">
<div class="row">
<section class="col-6 col-12-narrower feature">
<div class="image-wrapper" id="started">
<a href="java.html" class="image featured"><img src="images/java.jpeg" alt="" /></a>
</div>
<header>
<h2>Java Function Calls Relationship </h2>
</header>
<p>Use curved edges to show Java function call relationship. The callers of a function are shown
in blue lines and the callees are shown in red lines.
</p>
<ul class="actions">
<li><a href="java.html" class="button">Try It!</a></li>
</ul>
</section>
<section class="col-6 col-12-narrower feature">
<div class="image-wrapper first">
<a href="html.html" class="image featured first"><img src="images/html.jpeg" alt="" /></a>
</div>
<header>
<h2>HTML Tree Visualization</h2>
</header>
<p>
Use tree structure to show the tag structures in HTML file. You can click on the node to hide or show the subtree of the node.
</p>
<ul class="actions">
<li><a href="html.html" class="button">Try It!</a></li>
</ul>
</section>
</div>
</div>
</div>
<div id="copyright" class="container" style="margin-top: 0; padding: 40px;">
<ul class="menu">
<li>Implemented with ♥ by Wenhao Su, Yichen Yang, Zhen Yu</li>
</ul>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>