-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass.html
More file actions
160 lines (143 loc) · 5.23 KB
/
class.html
File metadata and controls
160 lines (143 loc) · 5.23 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="author" content="" />
<title>Cornell Blockchain</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<!-- Custom fonts for this template -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?family=Varela+Round"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet"
/>
<!-- Custom styles for this template -->
<link href="css/grayscale.min.css" rel="stylesheet" />
<link
rel="shortcut icon"
type="image/x-icon"
href="https://static1.squarespace.com/static/598b2b13ebbd1a0fc64f8091/t/59d16a2bb1ffb670473af094/favicon.ico"
/>
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="index.html">
<img src="img/logo.png" style="width: 180px" />
</a>
<button
class="navbar-toggler navbar-toggler-right"
type="button"
data-toggle="collapse"
data-target="#navbarResponsive"
aria-controls="navbarResponsive"
aria-expanded="false"
aria-label="Toggle navigation"
>
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a
class="nav-link js-scroll-trigger team-nav"
href="index.html#about"
>About</a
>
</li>
<li class="nav-item">
<a
class="nav-link js-scroll-trigger team-nav"
href="index.html#projects"
>Projects</a
>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger team-nav" href="team.html"
>Team</a
>
</li>
<li class="nav-item">
<a
class="nav-link js-scroll-trigger team-nav"
href="https://medium.com/cornellblockchain"
>Blog</a
>
</li>
<li class="nav-item">
<a
class="nav-link js-scroll-trigger team-nav"
href="class.html"
>1998 Class</a
>
</li>
<li class="nav-item">
<a
class="nav-link js-scroll-trigger team-nav"
href="index.html#signup"
>Contact</a
>
</li>
<li class="nav-item">
<a
class="nav-link js-scroll-trigger team-nav"
href="recruitment.html"
>Join Us</a
>
</li>
</ul>
</div>
</div>
</nav>
<!-- Projects Section -->
<section id="projects" class="projects-section bg-light">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 centered">
<h3>Welcome to CS 1998-607 Intro to Blockchain (Spring '22)</h3>
<p>Syllabus: <a href="https://docs.google.com/document/d/1iP3g9FP0IUqcvzzaI_T5mQ58G2MfOkUL/edit">link</a></p>
<div>
<p></p>
This class aims to provide individuals with exposure to a wide
range of blockchain technologies and developments. From the
basics of how blockchain and bitcoin work to current
technologies and developments such as Uniswap or NFTs, this
class will equip its students with basic knowledge to understand
the blockchain-space as well as the ability to make qualitative
statements on business and technological models. Open to all majors. No prior CS experience necessary.
</p>
</div>
<div>
<p>Time: 7:30 to 8:20pm M/W</p>
<p>Location: Phillips Hall 101</p>
<p>2 Credits S/U only</p>
</div>
<div>
You can register for this course on Cornell’s Student Center. On
the class roster, this course is labelled as CS 1998 IND 604. Prof. Noah Stephens-Davidowitz and Prof. Guillaume Lambert are our faculty sponsors.
</div>
</div>
</div>
</div>
</section>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for this template -->
<script src="js/grayscale.min.js"></script>
</body>
</html>