-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmajors.html
More file actions
112 lines (88 loc) · 4.54 KB
/
majors.html
File metadata and controls
112 lines (88 loc) · 4.54 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
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
<head>
<!-- Required meta tags -->
<!-- Test commit -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Bootstrap CSS -->
<link href="https://getbootstrap.com/docs/5.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
<link rel="canonical" href="https://getbootstrap.com/docs/5.1/examples/carousel/" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="./images/favicons.png" alt="SELU Favicon"/>
<!-- Roboto font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet" />
<title>Majors</title>
<!-- Custom styles for this template -->
<link href="carousel.css" rel="stylesheet" />
<link href="headers.css" rel="stylesheet" />
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<div id="header"></div>
<div class="container marketing">
<picture>
<!-- use if possible -->
<source type="image/avif" srcset="./images/cs-building.avif" alt="CMPS building">
<!-- fallback -->
<img width="100%" src="./images/cs-building.jpg" role="img" focusable="false"
style="margin: 2em; display: block; margin-left: auto; margin-right: auto" alt="CMPS building" />
</picture>
<h1 class="featurette-heading"><mark>Computer Science (Scientific)</mark></h1>
<p class="lead">
The Scientific Concentration provides a comprehensive computer science foundation that
prepares students to design and implement software to solve computing problems. It covers
applied topics, but emphasizes theoretical understanding of computer science, including an
ability to use advanced mathematics to solve scientific problems and to work closely with
other scientists to devise new ways of using computers.
</p>
<h1 class="featurette-heading"><mark>Pre MBA</mark></h1>
<p class="lead">
The Pre-MBA Concentration is intended for students who want to apply computer science
in a management setting. This concentration focuses on managing information, projects,
and other technical professionals. The cirriculum also includes business and management
courses to educate students in the organizational side of computer science, as well
fairly advanced mathematics.
</p>
<h1 class="featurette-heading"><mark>Information Technology</mark></h1>
<p class="lead">
The Information Technology program at Southeastern prepares students with practical,
hands-on expertise to solve everyday computing problems. This new program's curriculum
includes theoretical computer science topics and mathematics for graduates to successfully
converse with other computing professionals while focusing more on applications of
computer science.
</p>
<h1 class="featurette-heading"><mark>Data Science</mark></h1>
<p class="lead">
The Data Science program at Southeastern is a multi-disciplinary field that mainly integrates
computer science, math, and information science. This concentration aims to teach how to
process data and utilize the processed data by means of algorithms that mimics human intellegence.
The Data Science concentration is especially appropriate for students wishing to pursue a graduate
degree in data science leading ultimately to a research career or application development for data
analysis.
</p>
</div>
<button onclick="topFunction()" id="myBtn" title="Go to top"><img src="./images/caret-top.svg"
style="width: 1.2em;" alt="Return to Top Button"></button>
<!-- FOOTER -->
<div id="footer"></div>
</main>
<!-- END FOOTER -->
<script src="https://getbootstrap.com/docs/5.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Accessibility -->
<script src="https://cdn.jsdelivr.net/gh/mickidum/acc_toolbar/acctoolbar/acctoolbar.min.js"></script>
<script src=./scripts/accessibility.js> </script>
<!-- go to top button-->
<script src="./scripts/button.js"></script>
<!-- header and footer-->
<script>
$(function () {
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
</body>