SlideShare a Scribd company logo
Portal/images/start_here.jpg
Portal/index.html
Classes About Us
Portal/subpages/aboutUs.htmlAbout Ozarks Technical
Community College
Ozarks Technical Community College (OTC) was founded April
3, 1990 when the residents of Springfield school district and
13 surrounding public school districts voted to establish
a "community technical college." Since that time, OTC has
continued
to uphold a core-set of values that include quality,
opportunity, accessibility, learning, diversity, innovation,
community,
respect, integrity and personal growth. We uphold a
mission to promote student learning through accessible, high-
quality,
affordable workforce training, and technical and general
education that is responsive to the educational needs of the
community
and its diverse constituencies.
OTC's Strategic Goals
Quality: The quality of the faculty, staff, administration and
facilities will be enhanced in order to promote continuous
responsiveness to the expanding learning needs of the
community.
Effectiveness: The effectiveness of all programs and services
will be continuously assessed to ensure integrity and quality are
maintained and improved.
Community Collaboration: Meaningful relationships within the
College's service areas will be formed, allowing OTC to
develop
new programs that reflect the educational needs of the
community stakeholders.
Retention and Graduation Rates: The College will encourage
faculty, staff and administration to continually strive to improve
the rate of student retention and graduation.
Graduate Performance: The College will promote high academic
standards that will serve to enhance the success of graduates at
the workplace and in transfer institutions.
Innovation: The College will provide innovative teaching
strategies that promote continued learning opportunities for
students.
Affordability: The College will provide affordable learning
opportunities to all community members.
Learning Centered: The College will promote a learning-
centered environment that focuses on students' needs and
reduces barriers to
student success.Portal Classes
Portal/subpages/classes.htmlClasses We OfferCIS 101 -
Personal Computer Applications
This is a “hands-on” class learning to use the most common
microcomputer software programs and information resource
facilities.
This course provides a look at the structure and
components of microcomputers, their operating systems and an
introduction to
various applications with emphasis on word processing,
database management, spreadsheet applications, presentation
software
and Internet usage.
Prerequisite: Keyboarding skill of 25 WPM or BUS 101 or CIS
100 recommended.CIS 120 - Problem Solving and Programming
Concepts
This course is an introduction to the field of information
technology with an emphasis in problem solving, structured
program
design and beginning programming techniques for those
seeking a career in this industry. An overview of computer
concepts,
ethics and responsibilities and career options are also
provided.
Prerequisites: Grade of “NB” or better in MTH 050 or
equivalent score on the placement assessment for entry into
MTH
110 and keyboarding skill of 25 wpm recommended.CIS
130 - Web Site Development I
Note: Course only offered in the spring semester. This course
entails development of web sites using modern technologies.
Students will learn to develop web sites using
HTML/XHTML including body elements, links, tables, frames,
forms, style sheets
and graphics. Students will also learn to employ
cascading style sheets (CSS) and to separate content from
presentation.
Prerequisite: CIS 101 and CIS 115.CIS 131 - Web Site
Development II
Note: Course only offered in the fall semester. This course
covers the advanced features of Web Design, which enhance
the functionality of Web pages. Subjects explored
include advanced HTML, interactivity of Web pages using
forms,
Java, AJAX, JavaScript, designing Web pages using
Dynamic HTML (DHTML) and cascading style sheets (CSS).
Students
will build and maintain an online database with a
scripting language.
Prerequisites: Grade of “C” or better in CIS 120 and a grade of
“C” or better in CIS 130.CIS 139 - Introduction to Web Server
Management
Note: Course only offered in the spring semester. This course
covers the topics of managing a web server and gives
students the skills needed to administer their own server.
Subjects explored will be security, speed, configuration,
management and scalability for growth. Students will get
hands-on experience in different server environments and will
be introduced to a variety of tools and techniques that
can assist with administration.
Prerequisite: CIS 120CIS 239 - Web Development III
Note: Course only offered in the spring semester. This course
provides the concepts and skills necessary to design
and develop Web-based enterprise-level applications and
focuses on existing and emerging Web development
technologies.
Topics include specialized Web markup languages,
server-side backend databases, server-side programming, web
services,
enterprise Web development and Web applications.
Prerequisites: Grade of “C” or better in CIS 131 and grade of
“C” or better in CIS 250.Back to topPortal About Us
CIS130 – Web Site Development I
My Portal page (using Hypertext Links)
In this project, you will experiment with various kinds of links.
This will involve modifying web pages to create functioning
links.
NOTE: Do not move any files or folders from their current
locations! You need to be able to create functioning links to
files within other folders.
1. Download the Portal.zip file and extract its contents. Rename
the extracted Portal folder to be Portal-YourName, replacing
YourName with your last and first names (Ex: Portal-
AtwellLisa)
2. Open the index.html file in your HTML editor. Make the
following modifications/additions to the HTML code:
a) Comments should be added at the top of your head section to
include your name, date, and project name
b) The text that appears on the tab for this page should be Portal
3. Open the classes.html file in your HTML editor; this file is
inside the subpages folder. Make the following
modifications/additions to the HTML code:
a) The text that appears on the tab for this page should be
Classes
4. Open the aboutUs.html file in your HTML editor; this file is
inside the subpages folder. Display the file in your Web browser
to see how it looks. Notice that there are eight strategic goals
listed out in paragraph form. Alter the HTML code for this page
so that:
a) The text that appears on the tab for this page should be About
Us
b) The eight goals appear as an ordered list.
c) The eight individual goal topics (“Quality”, “Effectiveness”,
etc.) appear as bold text.
5. First, let’s play with external links using fully qualified (=
absolute) URL’s. Go back to the index.html file and make the
following modifications/additions to the existing HTML code:
a) Create a level 2 heading with the text External Links that will
appear at the top of your Web page when rendered in your
browser.
b) Place a link to the OTC site on your page, URL:
http://www.otc.edu. You can choose the text you use for all
links you create, but make it appropriate using the
recommendations presented in the chapter.
c) Place a link to the myOTC page on your page, URL:
https://my.otc.edu/portal/render.userLayoutRootNode.uP
d) Place a link to the OTC Foundation Scholarship on your
page, URL: http://foundation.otc.edu/what-we-do/otc-
foundation-scholarships/
e) Place a link to the SkillsUsa home page on your page, URL:
http://skillsusa.org/
f) The links you created in steps b-f should each be on their own
line.
6. Next, we will experiment with local links. Create the
following as local links using partial (= relative) URL
references.
a) On the bottom of index.html, you will notice the text Classes
and About Us. Edit the HTML code so that the Classes text
links to the classes.html page and About Us links to
aboutUs.html page.
b) On the bottom of classes.html, use the Portal and About Us
text to create working hyperlinks to index.html and
aboutUs.html respectively. Remember the importance of the
correct path to the linked resource.
c) On the bottom of the aboutUs.html document, use the Portal
and Classes text to create working hyperlinks to index.html and
classes.html respectively.
7. Now create an internal bookmark link on the classes.html
page so that the Back to Top text is a hyperlink that takes the
user back to the top of the same page. Use internal comments to
document both sections of code that are involved with this
process.
8. Go back to the index.html file and create a hyperlink so that
when the user clicks on the image, they are linked to
aboutUs.html.
9. Finally, use an anchor tag to create an e-mail hyperlink. Go
to the aboutUs.html file and edit the code so that after the
Strategic Goals list, you add a blank line and then add a line
containing text that says E-mail OTC: followed by your OTC
email address. Turn your email address into an e-mail
hyperlink.
10. Validate each of the pages using the W3C Validator and be
sure TEST ALL OF YOUR LINKS.
See Next Page for Grading Rubric
Grading Rubric:
REQUIRED ITEM
POSSIBLE POINTS
POINTS RECEIVED
Files saved and named appropriately
2
Correct text appears in the browser tab for each page
3
page3 goals are an ordered (numbered) list with topic in bold
3
Level 2 heading created
1
External links / anchor elements added correctly and text chosen
as links was appropriate
4
Local & email hyperlinks added in correct spots; links correctly
open the expected page
6
Internal link / bookmark link implemented correctly
3
Image hyperlink implemented correctly
2
All pages validate
4
Requested comments included
2
Final Grade
30
SU15

More Related Content

Similar to Portalimagesstart_here.jpgPortalindex.htmlClasses      .docx

CIS 498 Effective Communication - snaptutorial.com
CIS 498 Effective Communication - snaptutorial.comCIS 498 Effective Communication - snaptutorial.com
CIS 498 Effective Communication - snaptutorial.com
donaldzs1
 
Cis 498 Exceptional Education - snaptutorial.com
Cis 498  Exceptional Education - snaptutorial.comCis 498  Exceptional Education - snaptutorial.com
Cis 498 Exceptional Education - snaptutorial.com
DavisMurphyA87
 
MobileStore.pptx
MobileStore.pptxMobileStore.pptx
MobileStore.pptx
AkashChourasiya13
 
Cis 498 Education Organization-snaptutorial.com
Cis 498 Education Organization-snaptutorial.comCis 498 Education Organization-snaptutorial.com
Cis 498 Education Organization-snaptutorial.com
robertlesew2
 
Six Months Industrial Training11
Six Months Industrial Training11Six Months Industrial Training11
Six Months Industrial Training11Manoj Rao
 
9thWebDevFelke.pdf
9thWebDevFelke.pdf9thWebDevFelke.pdf
9thWebDevFelke.pdf
acrylic1
 
ppt of MANOJ KUMAR.pptx
ppt of MANOJ KUMAR.pptxppt of MANOJ KUMAR.pptx
ppt of MANOJ KUMAR.pptx
ManojKumar297202
 
It 236 it236
It 236 it236It 236 it236
It 236 it236
GOODCourseHelp
 
It 236 it236
It 236 it236It 236 it236
It 236 it236
GOODCourseHelp
 
WEB240 Version 1 1 Course Syllabus College o.docx
 WEB240 Version 1 1 Course Syllabus College o.docx WEB240 Version 1 1 Course Syllabus College o.docx
WEB240 Version 1 1 Course Syllabus College o.docx
MARRY7
 
Cis 498 Enhance teaching / snaptutorial.com
Cis 498   Enhance teaching / snaptutorial.comCis 498   Enhance teaching / snaptutorial.com
Cis 498 Enhance teaching / snaptutorial.com
Baileyabr
 
IRAQI STEM
IRAQI STEMIRAQI STEM
IRAQI STEM
bdbdbdora
 
ASSESSMENT BRIEF COURSE Bachelor of Business Bachel.docx
ASSESSMENT BRIEF COURSE Bachelor of Business  Bachel.docxASSESSMENT BRIEF COURSE Bachelor of Business  Bachel.docx
ASSESSMENT BRIEF COURSE Bachelor of Business Bachel.docx
galerussel59292
 
ashish ppt webd.pptx
ashish ppt webd.pptxashish ppt webd.pptx
ashish ppt webd.pptx
ashishsaini773461
 
Cis 498 Inspiring Innovation--tutorialrank.com
Cis 498  Inspiring Innovation--tutorialrank.comCis 498  Inspiring Innovation--tutorialrank.com
Cis 498 Inspiring Innovation--tutorialrank.com
PrescottLunt371
 
5a329780735625624 ch10
5a329780735625624 ch105a329780735625624 ch10
5a329780735625624 ch10harkesh singh
 
etech11_12_q2mod7_basic_webpage_creation_v3.pdf
etech11_12_q2mod7_basic_webpage_creation_v3.pdfetech11_12_q2mod7_basic_webpage_creation_v3.pdf
etech11_12_q2mod7_basic_webpage_creation_v3.pdf
RhudelAndallo
 
Web Development Internship at Bharat Intern
Web Development Internship at Bharat InternWeb Development Internship at Bharat Intern
Web Development Internship at Bharat Intern
veerasaisurya3006
 
Strayer cis-524-week-4-case-study-2-design-process-new
Strayer cis-524-week-4-case-study-2-design-process-newStrayer cis-524-week-4-case-study-2-design-process-new
Strayer cis-524-week-4-case-study-2-design-process-new
shyaminfo20
 
College Web Site HTML PROJECT
College Web Site HTML PROJECTCollege Web Site HTML PROJECT
College Web Site HTML PROJECT
Rai Saheb Bhanwar Singh College Nasrullaganj
 

Similar to Portalimagesstart_here.jpgPortalindex.htmlClasses      .docx (20)

CIS 498 Effective Communication - snaptutorial.com
CIS 498 Effective Communication - snaptutorial.comCIS 498 Effective Communication - snaptutorial.com
CIS 498 Effective Communication - snaptutorial.com
 
Cis 498 Exceptional Education - snaptutorial.com
Cis 498  Exceptional Education - snaptutorial.comCis 498  Exceptional Education - snaptutorial.com
Cis 498 Exceptional Education - snaptutorial.com
 
MobileStore.pptx
MobileStore.pptxMobileStore.pptx
MobileStore.pptx
 
Cis 498 Education Organization-snaptutorial.com
Cis 498 Education Organization-snaptutorial.comCis 498 Education Organization-snaptutorial.com
Cis 498 Education Organization-snaptutorial.com
 
Six Months Industrial Training11
Six Months Industrial Training11Six Months Industrial Training11
Six Months Industrial Training11
 
9thWebDevFelke.pdf
9thWebDevFelke.pdf9thWebDevFelke.pdf
9thWebDevFelke.pdf
 
ppt of MANOJ KUMAR.pptx
ppt of MANOJ KUMAR.pptxppt of MANOJ KUMAR.pptx
ppt of MANOJ KUMAR.pptx
 
It 236 it236
It 236 it236It 236 it236
It 236 it236
 
It 236 it236
It 236 it236It 236 it236
It 236 it236
 
WEB240 Version 1 1 Course Syllabus College o.docx
 WEB240 Version 1 1 Course Syllabus College o.docx WEB240 Version 1 1 Course Syllabus College o.docx
WEB240 Version 1 1 Course Syllabus College o.docx
 
Cis 498 Enhance teaching / snaptutorial.com
Cis 498   Enhance teaching / snaptutorial.comCis 498   Enhance teaching / snaptutorial.com
Cis 498 Enhance teaching / snaptutorial.com
 
IRAQI STEM
IRAQI STEMIRAQI STEM
IRAQI STEM
 
ASSESSMENT BRIEF COURSE Bachelor of Business Bachel.docx
ASSESSMENT BRIEF COURSE Bachelor of Business  Bachel.docxASSESSMENT BRIEF COURSE Bachelor of Business  Bachel.docx
ASSESSMENT BRIEF COURSE Bachelor of Business Bachel.docx
 
ashish ppt webd.pptx
ashish ppt webd.pptxashish ppt webd.pptx
ashish ppt webd.pptx
 
Cis 498 Inspiring Innovation--tutorialrank.com
Cis 498  Inspiring Innovation--tutorialrank.comCis 498  Inspiring Innovation--tutorialrank.com
Cis 498 Inspiring Innovation--tutorialrank.com
 
5a329780735625624 ch10
5a329780735625624 ch105a329780735625624 ch10
5a329780735625624 ch10
 
etech11_12_q2mod7_basic_webpage_creation_v3.pdf
etech11_12_q2mod7_basic_webpage_creation_v3.pdfetech11_12_q2mod7_basic_webpage_creation_v3.pdf
etech11_12_q2mod7_basic_webpage_creation_v3.pdf
 
Web Development Internship at Bharat Intern
Web Development Internship at Bharat InternWeb Development Internship at Bharat Intern
Web Development Internship at Bharat Intern
 
Strayer cis-524-week-4-case-study-2-design-process-new
Strayer cis-524-week-4-case-study-2-design-process-newStrayer cis-524-week-4-case-study-2-design-process-new
Strayer cis-524-week-4-case-study-2-design-process-new
 
College Web Site HTML PROJECT
College Web Site HTML PROJECTCollege Web Site HTML PROJECT
College Web Site HTML PROJECT
 

More from ChantellPantoja184

Problem 1Problem 2.docx
Problem 1Problem 2.docxProblem 1Problem 2.docx
Problem 1Problem 2.docx
ChantellPantoja184
 
Problem 20-1A Production cost flow and measurement; journal entrie.docx
Problem 20-1A Production cost flow and measurement; journal entrie.docxProblem 20-1A Production cost flow and measurement; journal entrie.docx
Problem 20-1A Production cost flow and measurement; journal entrie.docx
ChantellPantoja184
 
Problem 2 Obtain Io.Let x be the current through j2, ..docx
Problem 2 Obtain Io.Let x be the current through j2, ..docxProblem 2 Obtain Io.Let x be the current through j2, ..docx
Problem 2 Obtain Io.Let x be the current through j2, ..docx
ChantellPantoja184
 
Problem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docx
Problem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docxProblem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docx
Problem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docx
ChantellPantoja184
 
Problem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docx
Problem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docxProblem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docx
Problem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docx
ChantellPantoja184
 
Problem 1Problem 1 - Constant-Growth Common StockWhat is the value.docx
Problem 1Problem 1 - Constant-Growth Common StockWhat is the value.docxProblem 1Problem 1 - Constant-Growth Common StockWhat is the value.docx
Problem 1Problem 1 - Constant-Growth Common StockWhat is the value.docx
ChantellPantoja184
 
Problem 1Prescott, Inc., manufactures bookcases and uses an activi.docx
Problem 1Prescott, Inc., manufactures bookcases and uses an activi.docxProblem 1Prescott, Inc., manufactures bookcases and uses an activi.docx
Problem 1Prescott, Inc., manufactures bookcases and uses an activi.docx
ChantellPantoja184
 
Problem 1Preston Recliners manufactures leather recliners and uses.docx
Problem 1Preston Recliners manufactures leather recliners and uses.docxProblem 1Preston Recliners manufactures leather recliners and uses.docx
Problem 1Preston Recliners manufactures leather recliners and uses.docx
ChantellPantoja184
 
Problem 1Pro Forma Income Statement and Balance SheetBelow is the .docx
Problem 1Pro Forma Income Statement and Balance SheetBelow is the .docxProblem 1Pro Forma Income Statement and Balance SheetBelow is the .docx
Problem 1Pro Forma Income Statement and Balance SheetBelow is the .docx
ChantellPantoja184
 
Problem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docx
Problem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docxProblem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docx
Problem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docx
ChantellPantoja184
 
PROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docx
PROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docxPROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docx
PROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docx
ChantellPantoja184
 
Problem 13-3AThe stockholders’ equity accounts of Ashley Corpo.docx
Problem 13-3AThe stockholders’ equity accounts of Ashley Corpo.docxProblem 13-3AThe stockholders’ equity accounts of Ashley Corpo.docx
Problem 13-3AThe stockholders’ equity accounts of Ashley Corpo.docx
ChantellPantoja184
 
Problem 12-9AYour answer is partially correct.  Try again..docx
Problem 12-9AYour answer is partially correct.  Try again..docxProblem 12-9AYour answer is partially correct.  Try again..docx
Problem 12-9AYour answer is partially correct.  Try again..docx
ChantellPantoja184
 
Problem 1123456Xf122437455763715813910106Name DateTopic.docx
Problem 1123456Xf122437455763715813910106Name DateTopic.docxProblem 1123456Xf122437455763715813910106Name DateTopic.docx
Problem 1123456Xf122437455763715813910106Name DateTopic.docx
ChantellPantoja184
 
Problem 1. For the truss and loading shown below, calculate th.docx
Problem 1. For the truss and loading shown below, calculate th.docxProblem 1. For the truss and loading shown below, calculate th.docx
Problem 1. For the truss and loading shown below, calculate th.docx
ChantellPantoja184
 
Problem 1 (30 marks)Review enough information about .docx
Problem 1 (30 marks)Review enough information about .docxProblem 1 (30 marks)Review enough information about .docx
Problem 1 (30 marks)Review enough information about .docx
ChantellPantoja184
 
Problem 1 (10 points) Note that an eigenvector cannot be zero.docx
Problem 1 (10 points) Note that an eigenvector cannot be zero.docxProblem 1 (10 points) Note that an eigenvector cannot be zero.docx
Problem 1 (10 points) Note that an eigenvector cannot be zero.docx
ChantellPantoja184
 
Probation and Parole 3Running head Probation and Parole.docx
Probation and Parole 3Running head Probation and Parole.docxProbation and Parole 3Running head Probation and Parole.docx
Probation and Parole 3Running head Probation and Parole.docx
ChantellPantoja184
 
Problem 1(a) Complete the following ANOVA table based on 20 obs.docx
Problem 1(a) Complete the following ANOVA table based on 20 obs.docxProblem 1(a) Complete the following ANOVA table based on 20 obs.docx
Problem 1(a) Complete the following ANOVA table based on 20 obs.docx
ChantellPantoja184
 
Probe 140 SPrecipitation in inchesTemperature in F.docx
Probe 140 SPrecipitation in inchesTemperature in F.docxProbe 140 SPrecipitation in inchesTemperature in F.docx
Probe 140 SPrecipitation in inchesTemperature in F.docx
ChantellPantoja184
 

More from ChantellPantoja184 (20)

Problem 1Problem 2.docx
Problem 1Problem 2.docxProblem 1Problem 2.docx
Problem 1Problem 2.docx
 
Problem 20-1A Production cost flow and measurement; journal entrie.docx
Problem 20-1A Production cost flow and measurement; journal entrie.docxProblem 20-1A Production cost flow and measurement; journal entrie.docx
Problem 20-1A Production cost flow and measurement; journal entrie.docx
 
Problem 2 Obtain Io.Let x be the current through j2, ..docx
Problem 2 Obtain Io.Let x be the current through j2, ..docxProblem 2 Obtain Io.Let x be the current through j2, ..docx
Problem 2 Obtain Io.Let x be the current through j2, ..docx
 
Problem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docx
Problem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docxProblem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docx
Problem 1On April 1, 20X4, Rojas purchased land by giving $100,000.docx
 
Problem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docx
Problem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docxProblem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docx
Problem 17-1 Dividends and Taxes [LO2]Dark Day, Inc., has declar.docx
 
Problem 1Problem 1 - Constant-Growth Common StockWhat is the value.docx
Problem 1Problem 1 - Constant-Growth Common StockWhat is the value.docxProblem 1Problem 1 - Constant-Growth Common StockWhat is the value.docx
Problem 1Problem 1 - Constant-Growth Common StockWhat is the value.docx
 
Problem 1Prescott, Inc., manufactures bookcases and uses an activi.docx
Problem 1Prescott, Inc., manufactures bookcases and uses an activi.docxProblem 1Prescott, Inc., manufactures bookcases and uses an activi.docx
Problem 1Prescott, Inc., manufactures bookcases and uses an activi.docx
 
Problem 1Preston Recliners manufactures leather recliners and uses.docx
Problem 1Preston Recliners manufactures leather recliners and uses.docxProblem 1Preston Recliners manufactures leather recliners and uses.docx
Problem 1Preston Recliners manufactures leather recliners and uses.docx
 
Problem 1Pro Forma Income Statement and Balance SheetBelow is the .docx
Problem 1Pro Forma Income Statement and Balance SheetBelow is the .docxProblem 1Pro Forma Income Statement and Balance SheetBelow is the .docx
Problem 1Pro Forma Income Statement and Balance SheetBelow is the .docx
 
Problem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docx
Problem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docxProblem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docx
Problem 2-1PROBLEM 2-1Solution Legend= Value given in problemGiven.docx
 
PROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docx
PROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docxPROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docx
PROBLEM 14-6AProblem 14-6A Norwoods Borrowings1. Total amount of .docx
 
Problem 13-3AThe stockholders’ equity accounts of Ashley Corpo.docx
Problem 13-3AThe stockholders’ equity accounts of Ashley Corpo.docxProblem 13-3AThe stockholders’ equity accounts of Ashley Corpo.docx
Problem 13-3AThe stockholders’ equity accounts of Ashley Corpo.docx
 
Problem 12-9AYour answer is partially correct.  Try again..docx
Problem 12-9AYour answer is partially correct.  Try again..docxProblem 12-9AYour answer is partially correct.  Try again..docx
Problem 12-9AYour answer is partially correct.  Try again..docx
 
Problem 1123456Xf122437455763715813910106Name DateTopic.docx
Problem 1123456Xf122437455763715813910106Name DateTopic.docxProblem 1123456Xf122437455763715813910106Name DateTopic.docx
Problem 1123456Xf122437455763715813910106Name DateTopic.docx
 
Problem 1. For the truss and loading shown below, calculate th.docx
Problem 1. For the truss and loading shown below, calculate th.docxProblem 1. For the truss and loading shown below, calculate th.docx
Problem 1. For the truss and loading shown below, calculate th.docx
 
Problem 1 (30 marks)Review enough information about .docx
Problem 1 (30 marks)Review enough information about .docxProblem 1 (30 marks)Review enough information about .docx
Problem 1 (30 marks)Review enough information about .docx
 
Problem 1 (10 points) Note that an eigenvector cannot be zero.docx
Problem 1 (10 points) Note that an eigenvector cannot be zero.docxProblem 1 (10 points) Note that an eigenvector cannot be zero.docx
Problem 1 (10 points) Note that an eigenvector cannot be zero.docx
 
Probation and Parole 3Running head Probation and Parole.docx
Probation and Parole 3Running head Probation and Parole.docxProbation and Parole 3Running head Probation and Parole.docx
Probation and Parole 3Running head Probation and Parole.docx
 
Problem 1(a) Complete the following ANOVA table based on 20 obs.docx
Problem 1(a) Complete the following ANOVA table based on 20 obs.docxProblem 1(a) Complete the following ANOVA table based on 20 obs.docx
Problem 1(a) Complete the following ANOVA table based on 20 obs.docx
 
Probe 140 SPrecipitation in inchesTemperature in F.docx
Probe 140 SPrecipitation in inchesTemperature in F.docxProbe 140 SPrecipitation in inchesTemperature in F.docx
Probe 140 SPrecipitation in inchesTemperature in F.docx
 

Recently uploaded

S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
tarandeep35
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
deeptiverma2406
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
DhatriParmar
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 

Recently uploaded (20)

S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 

Portalimagesstart_here.jpgPortalindex.htmlClasses      .docx

  • 1. Portal/images/start_here.jpg Portal/index.html Classes About Us Portal/subpages/aboutUs.htmlAbout Ozarks Technical Community College Ozarks Technical Community College (OTC) was founded April 3, 1990 when the residents of Springfield school district and 13 surrounding public school districts voted to establish a "community technical college." Since that time, OTC has continued to uphold a core-set of values that include quality, opportunity, accessibility, learning, diversity, innovation, community, respect, integrity and personal growth. We uphold a mission to promote student learning through accessible, high- quality, affordable workforce training, and technical and general education that is responsive to the educational needs of the community and its diverse constituencies. OTC's Strategic Goals Quality: The quality of the faculty, staff, administration and facilities will be enhanced in order to promote continuous responsiveness to the expanding learning needs of the community. Effectiveness: The effectiveness of all programs and services will be continuously assessed to ensure integrity and quality are maintained and improved. Community Collaboration: Meaningful relationships within the College's service areas will be formed, allowing OTC to develop
  • 2. new programs that reflect the educational needs of the community stakeholders. Retention and Graduation Rates: The College will encourage faculty, staff and administration to continually strive to improve the rate of student retention and graduation. Graduate Performance: The College will promote high academic standards that will serve to enhance the success of graduates at the workplace and in transfer institutions. Innovation: The College will provide innovative teaching strategies that promote continued learning opportunities for students. Affordability: The College will provide affordable learning opportunities to all community members. Learning Centered: The College will promote a learning- centered environment that focuses on students' needs and reduces barriers to student success.Portal Classes Portal/subpages/classes.htmlClasses We OfferCIS 101 - Personal Computer Applications This is a “hands-on” class learning to use the most common microcomputer software programs and information resource facilities. This course provides a look at the structure and components of microcomputers, their operating systems and an introduction to various applications with emphasis on word processing, database management, spreadsheet applications, presentation software and Internet usage. Prerequisite: Keyboarding skill of 25 WPM or BUS 101 or CIS 100 recommended.CIS 120 - Problem Solving and Programming Concepts This course is an introduction to the field of information technology with an emphasis in problem solving, structured
  • 3. program design and beginning programming techniques for those seeking a career in this industry. An overview of computer concepts, ethics and responsibilities and career options are also provided. Prerequisites: Grade of “NB” or better in MTH 050 or equivalent score on the placement assessment for entry into MTH 110 and keyboarding skill of 25 wpm recommended.CIS 130 - Web Site Development I Note: Course only offered in the spring semester. This course entails development of web sites using modern technologies. Students will learn to develop web sites using HTML/XHTML including body elements, links, tables, frames, forms, style sheets and graphics. Students will also learn to employ cascading style sheets (CSS) and to separate content from presentation. Prerequisite: CIS 101 and CIS 115.CIS 131 - Web Site Development II Note: Course only offered in the fall semester. This course covers the advanced features of Web Design, which enhance the functionality of Web pages. Subjects explored include advanced HTML, interactivity of Web pages using forms, Java, AJAX, JavaScript, designing Web pages using Dynamic HTML (DHTML) and cascading style sheets (CSS). Students will build and maintain an online database with a scripting language. Prerequisites: Grade of “C” or better in CIS 120 and a grade of “C” or better in CIS 130.CIS 139 - Introduction to Web Server Management Note: Course only offered in the spring semester. This course covers the topics of managing a web server and gives
  • 4. students the skills needed to administer their own server. Subjects explored will be security, speed, configuration, management and scalability for growth. Students will get hands-on experience in different server environments and will be introduced to a variety of tools and techniques that can assist with administration. Prerequisite: CIS 120CIS 239 - Web Development III Note: Course only offered in the spring semester. This course provides the concepts and skills necessary to design and develop Web-based enterprise-level applications and focuses on existing and emerging Web development technologies. Topics include specialized Web markup languages, server-side backend databases, server-side programming, web services, enterprise Web development and Web applications. Prerequisites: Grade of “C” or better in CIS 131 and grade of “C” or better in CIS 250.Back to topPortal About Us CIS130 – Web Site Development I My Portal page (using Hypertext Links) In this project, you will experiment with various kinds of links. This will involve modifying web pages to create functioning links. NOTE: Do not move any files or folders from their current locations! You need to be able to create functioning links to files within other folders. 1. Download the Portal.zip file and extract its contents. Rename the extracted Portal folder to be Portal-YourName, replacing YourName with your last and first names (Ex: Portal- AtwellLisa) 2. Open the index.html file in your HTML editor. Make the following modifications/additions to the HTML code: a) Comments should be added at the top of your head section to
  • 5. include your name, date, and project name b) The text that appears on the tab for this page should be Portal 3. Open the classes.html file in your HTML editor; this file is inside the subpages folder. Make the following modifications/additions to the HTML code: a) The text that appears on the tab for this page should be Classes 4. Open the aboutUs.html file in your HTML editor; this file is inside the subpages folder. Display the file in your Web browser to see how it looks. Notice that there are eight strategic goals listed out in paragraph form. Alter the HTML code for this page so that: a) The text that appears on the tab for this page should be About Us b) The eight goals appear as an ordered list. c) The eight individual goal topics (“Quality”, “Effectiveness”, etc.) appear as bold text. 5. First, let’s play with external links using fully qualified (= absolute) URL’s. Go back to the index.html file and make the following modifications/additions to the existing HTML code: a) Create a level 2 heading with the text External Links that will appear at the top of your Web page when rendered in your browser. b) Place a link to the OTC site on your page, URL: http://www.otc.edu. You can choose the text you use for all links you create, but make it appropriate using the recommendations presented in the chapter. c) Place a link to the myOTC page on your page, URL: https://my.otc.edu/portal/render.userLayoutRootNode.uP d) Place a link to the OTC Foundation Scholarship on your page, URL: http://foundation.otc.edu/what-we-do/otc- foundation-scholarships/
  • 6. e) Place a link to the SkillsUsa home page on your page, URL: http://skillsusa.org/ f) The links you created in steps b-f should each be on their own line. 6. Next, we will experiment with local links. Create the following as local links using partial (= relative) URL references. a) On the bottom of index.html, you will notice the text Classes and About Us. Edit the HTML code so that the Classes text links to the classes.html page and About Us links to aboutUs.html page. b) On the bottom of classes.html, use the Portal and About Us text to create working hyperlinks to index.html and aboutUs.html respectively. Remember the importance of the correct path to the linked resource. c) On the bottom of the aboutUs.html document, use the Portal and Classes text to create working hyperlinks to index.html and classes.html respectively. 7. Now create an internal bookmark link on the classes.html page so that the Back to Top text is a hyperlink that takes the user back to the top of the same page. Use internal comments to document both sections of code that are involved with this process. 8. Go back to the index.html file and create a hyperlink so that when the user clicks on the image, they are linked to aboutUs.html. 9. Finally, use an anchor tag to create an e-mail hyperlink. Go to the aboutUs.html file and edit the code so that after the Strategic Goals list, you add a blank line and then add a line containing text that says E-mail OTC: followed by your OTC email address. Turn your email address into an e-mail hyperlink. 10. Validate each of the pages using the W3C Validator and be
  • 7. sure TEST ALL OF YOUR LINKS. See Next Page for Grading Rubric Grading Rubric: REQUIRED ITEM POSSIBLE POINTS POINTS RECEIVED Files saved and named appropriately 2 Correct text appears in the browser tab for each page 3 page3 goals are an ordered (numbered) list with topic in bold 3 Level 2 heading created 1 External links / anchor elements added correctly and text chosen as links was appropriate 4 Local & email hyperlinks added in correct spots; links correctly open the expected page 6 Internal link / bookmark link implemented correctly 3 Image hyperlink implemented correctly 2 All pages validate 4