-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdesign.html
46 lines (34 loc) · 1.33 KB
/
design.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CST-171 Project Topics</title>
<!-- Bootstrap core CSS -->
<link href="https://v4-alpha.getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
.bold-italic { font-weight: bold; font-style: italic;}
</style>
</head>
<body>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<h1 class="display-3">Design Your Own Project</h1>
<p>Don't like any of the other project ideas? Design your own. You are welcome to suggest a project of your choosing to your instructor for approval.</p>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<p>Want to model or simulate something? Want to examine large amounts of text? Have your own ideas for a project? Proposals for your own project are welcome. However, please not that they need to incorporate several of the topics below before they will be approved.
</p>
<ul>
<li>Getting input from the user</li>
<li>Loops</li>
<li>Conditional Statements</li>
<li>Mathematical Operations</li>
<li>File Reading and Writing</li>
</ul>
<hr>
</div> <!-- /container -->
</body>
</html>