-
Notifications
You must be signed in to change notification settings - Fork 49
/
index.html
32 lines (28 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<!-- Text that appears in the browser tab -->
<title>DPI-691M</title>
<!-- Link stylesheet -->
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<!-- Head and subhead -->
<h1>Programming and Data for Policymakers [DPI-691M]</h1>
<h2>Welcome to shopping days!</h2>
<!-- Image -->
<img src="https://www.hks.harvard.edu/sites/default/files/images/paragraph_footer/harvard-kennedy-school-logo_1.png"/>
<!-- Paragraphs of text -->
<p>You should take this course whether or not you plan to code for a living.</p>
<p>It will help you:</p>
<!-- Unordered List (bullet points) -->
<ul>
<li>Learn how to pick up new technical skills (in any language) on your own.</li>
<li>Learn how to ask the right questions to identify someone trying to sell you bad technology.</li>
<li>Understand the value of open source technology in Government.</li>
<li>Speak with experts and coders on the topic.</li>
</ul>
<!-- Invoke the JavaScript file for interactive image -->
<script type="text/javascript" src='main.js'></script>
</body>
</html>