-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
120 lines (100 loc) · 5.45 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
---
title: Home
---
<!DOCTYPE html>
<html lang="en">
<head>
{% include head.html %}
</head>
<body>
<div class="d-flex toggled" id="wrapper">
{% include sidebar.html %}
<!-- Page Content -->
<div id="page-content-wrapper" class="home-image">
<nav class="navbar sticky-top navbar-expand-lg home-nav-bg border-bottom">
<button class="btn btn-brand" id="menu-toggle">
<i class="fas fa-bars"></i>
</button>
<a href="#" class="navbar-brand mb-0 h1 text-center mx-auto"></a>
</nav>
<div class="container">
<article class="page home-page">
<h1 class="page-title" id="page-title">{{ site.title }}</h1>
<div class="page-content">
<p><span class="firstcharacter">C</span>omputers have become an essential part of our daily
lives and play a vital role in many aspects of modern society. They are used in a wide range
of fields, including education, business, medicine, entertainment, and communication.
Computers allow us to process and store vast amounts of information, communicate with
others, and access a vast array of resources and information through the internet. They also
enable us to perform a wide range of tasks more efficiently, including data analysis, word
processing, and decision making. In short, computers have greatly improved our productivity
and have made many aspects of our lives easier and more convenient.</p>
<p>In this course, we will cover the principles of a computer system, from the prospective of a
programmer. This class will teach you how your computer program gets converted into
something a computer understands. This class will emphasize:</p>
<div class="row home-cards">
<div class="col text-center">
<div class="card home-card">
<i class="home-icon fa-duotone fa-brackets-curly"></i>
<div class="card-body">
<p class="card-text">C Programming</p>
</div>
</div>
</div>
<div class="col text-center">
<div class="card home-card">
<i class="home-icon fa-duotone fa-computer-classic"></i>
<div class="card-body">
<p class="card-text">Machine Representation of Programs</p>
</div>
</div>
</div>
<div class="col text-center">
<div class="card home-card">
<i class="home-icon fa-duotone fa-chart-network"></i>
<div class="card-body">
<p class="card-text">Building a Complex System</p>
</div>
</div>
</div>
<div class="w-100 card-seperator"></div>
<div class="col text-center">
<div class="card home-card">
<i class="home-icon fa-duotone fa-square-terminal"></i>
<div class="card-body">
<p class="card-text">Essential Command Line Skills</p>
</div>
</div>
</div>
<div class="col text-center">
<div class="card home-card">
<i class="home-icon fa-duotone fa-network-wired"></i>
<div class="card-body">
<p class="card-text">And many other topics...</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="text-center">
<!-- <img src="https://via.placeholder.com/750x600.png?text=Some+cool+and+inspiring+image"> -->
</div>
</div>
</div>
</div>
</article>
<div class="thanks">
<p>Special thanks to <a href="https://www.linkedin.com/in/lauren-hurst-1a41821a3/">Lauren Hurst</a>
and <a href="https://www.linkedin.com/in/brynn-lafleur-301a991a3/">Brynn LaFleur</a> for all of
the graphics and icons!</p>
</div>
</div>
</div>
</div>
<!-- /#page-content-wrapper -->
</div>
<!-- /#wrapper -->
{% include scripts.html %}
</body>
</html>