forked from CU-CSCI3308-Spring2024/html-css-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_bootstrap.html
67 lines (67 loc) · 3.17 KB
/
index_bootstrap.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<title>HTML with Bootstrap</title>
<!-- <style>
p{
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: justify;
}
</style> -->
</head>
<body>
<div class="container">
<div class="row" style="padding-top: 5%;">
<div class="col-3">
<img class="rounded" src="https://www.colorado.edu/sites/default/files/styles/medium/public/page/cu-boulder-share-photo.jpg?itok=mj_T3rTr" alt="" style="width: 80%;">
</div>
<div class="col-9">
<h1>
University of Colorado Boulder
</h1>
<h3>
CSCI 3308: Software Development Methods and Tools
</h3>
<hr>
<h4>Course Description</h6>
<p>
Covers tools and techniques for successful software development with a strong focus on best practices used in industry. Students work in small teams to complete a semester-long application development project. Students learn front-end design and construction using HTML & CSS, back-end database design and construction, and full-stack integration. Students gain exposure to agile methodologies, web services, distributed version control, requirements definition, automated integration testing, and cloud-based application deployment.
</p>
<hr>
<h4>Course Details</h4>
<table class="table table-bordered">
<thead>
<tr>
<th>Semester</th>
<th>Year</th>
<th>Credits</th>
<th>Lecture Timings</th>
<th>Start Date</th>
<th>End Date</th>
</tr>
<tbody>
<tr>
<td>Spring</td>
<td>2024</td>
<td>3</td>
<td>MW 11:15am - 12:05pm</td>
<td>Jan 16, 2024</td>
<td>May 2, 2024</td>
</tr>
</tbody>
</thead>
</table>
<hr>
<h4>Syllabus</h4>
The syllabus for the course can be found <a href="https://cuboulder-csci3308.pages.dev/docs/syllabus/">here</a>
<hr>
<h4>Course Schedule</h4>
The course schedule for the course can be found <a href="https://cuboulder-csci3308.pages.dev/docs/courseSchedule/course_schedule_Spring2024" target="_blank">here</a>.
</div>
</div>
</div>
</body>
</html>