-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (63 loc) · 2.27 KB
/
index.html
File metadata and controls
67 lines (63 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SAC C Programming</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div class="navigation">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Trainer</a></li>
<li><a href="syllabus.html">CTSD</a></li>
<li><a href="#">Exam prep</a></li>
<li><a href="#">Practice Programs</a></li>
</ul>
</div>
<div id="container-img">
<img src="images/8.png" alt="">
</div>
<div class="container-text">
<p id="container-text-1">
Student Activity Center <br> Programmers Community
</p>
<p id="container-text-2">
"Sharing Knowledge is no less than gaining Knowledge" <br>
<div id="author">--Deepak Reddy Gathpa</div>
</p>
</div>
<div class="course-module-total">
<div class="course-module-heading">
<h1>Course Modules</h1>
</div>
<div class="course-module">
<div class="co1 co">
<img src="images/co1.png" alt="">
<p id="title">Course-outcome 1</p>
<p>Develop and Apply logical builidng blocks to solve real world problems</p>
</div>
<div class="co2 co">
<img src="images/co2.png" alt="">
<p id="title">Course-outcome 2</p>
<p>Apply Computational thinking for designing solutions</p>
</div>
<div class="co3 co">
<img src="images/co3.png" alt="">
<p id="title">Course-outcome 3</p>
<p>Develop and apply the CRUD operations on arrays</p>
</div>
<div class="co4 co">
<img src="images/co4.png" alt="">
<p id="title">Course-outcome 4</p>
<p>Apply CRUD Operations on Linear Data Structures</p>
</div>
</div>
</div>
</div>
</body>
</html>