Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added images/favicon.ico
Binary file not shown.
Binary file added images/software-pic.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tsct-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
89 changes: 89 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<!-- Home page -->
<!DOCTYPE html>
<!-- Language -->
<html lang="en-US" dir="ltr">
<head>
<!-- Character Encoding -->
<meta charset="utf-8">

<!-- Meta for Microsoft Edge Browser -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">

<!-- @media Breakpoints -->
<meta name="viewport" content="width=device-width, initial-scale=1">

<!-- Search Engines Algorithms -->
<meta name="author" content="CSET Students">
<meta name="description" content="This is the Computer Software Engineering Technology program page of Thaddeus Stevens College of Technology."/>

<!-- Open Graph Data for Facebook-->
<meta property="og:image" content="images/software-pic.jpeg">
<meta property="og:description" content="This is the Computer Software Engineering Technology program page of Thaddeus Stevens College of Technology.">
<meta property="og:title" content="Computer Software Engineering Technology">

<!-- Twitter Proprietary Metadata -->
<meta name="twitter:title" content="Computer Software Engineering Technology">

<!-- third-generation iPad with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/software-pic.jpeg">

<!-- iPhone with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/software-pic.jpeg">

<!-- first- and second-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/software-pic.jpeg">

<!-- non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed" href="images/images/software-pic.jpeg">

<!-- Basic Favicon -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">

<!-- Google Fonts -->

<!-- CSS stylesheet -->
<link rel="stylesheet" href="styles.css" type="text/css">

<title>COMPUTER SOFTWARE ENGINEERING TECHNOLOGY</title>
</head>
<body>
<!-- CONTENT -->

<header>
TOP MENU HERE
</header>

<h1>Computer Software Engineering Technology</h1>
<p>Computers have become a major factor in the development and operation of the modern industry. From providing means of communications, to operating machines, to facilitating international commerce, to systems animation, computers and their related software programs makes things possible.</p>
<p>The Computer Software Engineering Technology program prepares students to design, develop, and build customized software programs for specific applications. Specifically, students will learn basic programming, how to interpret specifications, application of software architecture, verification and validation principles, and software performance standards. Students will create software programs which address known specifications. The program emphasizes a practical hands-on education as software projects are required each semester.</p>
<p>Upon completion of the program, graduates will find a wealth of employment opportunities in a variety of businesses and industries. Unlike some disciplines which are tied directly to a specific technical area, graduates of this program will work in small businesses, large industries, private organizations, software specialty businesses, IT Department, Government, and other agencies. Job titles might include:</p>

<ul>
<li>Software Designers</li>
<li>Software Test Technicians</li>
<li>Software Maintenance Technicians</li>
<li>Technical Writer for Software Publishing Companies</li>
<li>Customer Service Technicians for Software Companies</li>
</ul>

<h2>PROGRAM OBJECTIVES</h2>
<p>A graduate of this program will be able to do the following:</p>

<ul>
<li>Edit and modify existing software programs with the aim of upgrading and correcting errors.</li>
<li>Improve the performance of software programs, or adapt it to new and old hardware and software.</li>
<li>Analyze the needs of users for project design.</li>
<li>Design and modify software systems for specific applications.</li>
<li>Analyze and recommend all necessary system layouts and modifications.</li>
<li>Train users how to make use of new software.</li>
</ul>

<footer>
FOOTER MENU HERE
</footer>

<!-- Link to Script -->
<script src="script.js"></script>

</body>
</html>
3 changes: 3 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Browser Message code

alert("Written & Coded By TSCT Students");
6 changes: 6 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/* CSS stylesheet */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}