-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregcourse.html
96 lines (92 loc) · 2.79 KB
/
regcourse.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
96
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Reg Course</title>
</head>
<body>
<div class="container">
<div class="thinline"></div>
<h1 class = "courseSubjectRow">Introduction to Computer Science</h1>
<img src="gogowisestyle/image/recommended1.jpg" class="courseInfoImg">
<ul class="list-inline">
<li class="searchItemState">School:Rice</li>
<li class="searchItemState">Lecturer: Zeng</li>
<li class="searchItemState">Registrations: 88</li>
<li class="searchItemState">Start Date: 2014-1-1</li>
<li class="searchItemState">Number of Hours: 16</li>
<li class="searchItemState">Online Price: 480</li>
</ul>
<h4 class="courseBody">
CS50x is Harvard College's introduction to the intellectual enterprises of computer science
and the art of programming for majors and non-majors alike, with or without prior
programming experience. An entry-level course taught by David J. Malan, CS50x
teaches students how to think algorithmically and solve problems efficiently. Topics include
abstraction, algorithms, data structures, encapsulation, resource management, security,
software engineering, and web development. Languages include C, PHP, and JavaScript
plus SQL, CSS, and HTML. Problem sets inspired by real-world domains of biology,
cryptography, finance, forensics, and gaming. As of Fall 2012, the on-campus version of
CS50x is Harvard's second-largest course.
Students who earn a passing grade on 8 problem sets (programming assignments - 15-20
hours each), 2 quizzes, and a final project will get a certificate from HarvardX. Students
may take CS50x at their own pace.
</h4>
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Course Content</th>
<th>Date</th>
<th>Time</th>
</tr>
</thead>
<tbody>
<tr class="fontRedBold">
<td>1</td>
<td>lesson 1</td>
<td>2014-1-1 20:00</td>
<td>45m</td>
</tr>
<tr class="fontRedBold">
<td>2</td>
<td>lesson 2</td>
<td>2014-1-3 20:00</td>
<td>45m</td>
</tr>
<tr>
<td>3</td>
<td>lesson 3</td>
<td>2014-1-5 20:00</td>
<td>45m</td>
</tr>
<tr>
<td>4</td>
<td>lesson 4</td>
<td>2014-1-7 20:00</td>
<td>45m</td>
</tr>
<tr>
<td>5</td>
<td>lesson 5</td>
<td>2014-1-9 20:00</td>
<td>45m</td>
</tr>
</tbody>
</table>
<div style="text-align: center;">
<div class="row">
<div class="col-sm-6">
<button type="button" class="btn btn-primary btn-lg btn-block">Confirm Registration</button>
</div>
<div class="col-sm-6">
<button type="button" class="btn btn-danger btn-lg btn-block">Cancel</button>
</div>
</div>
</div>
<br/>
<div>
<img src="gogowisestyle/image/orgSalebanner.jpg" alt="" class="orgSalebanner">
</div>
</div>
</body>
</html>