FREE: STUDENT”S INDUSTRAL WORK EXPERIENCE SCHEME (SWIES) CONPREHENSIVE REPORT ON INDUSTRIAL
REPORT
ON
STUDENT”S INDUSTRAL
WORK EXPERIENCE SCHEME (SWIES)
CONPREHENSIVE REPORT ON INDUSTRIAL
TRAINING ATTACHMENT SUBMITTED
HELD AT
========- COMPUTER ILESA, OSUN STATE , NIGERIA
COMPILED BY
NAME: ========'''''''''''''''''''
DEPARTMENT:COMPUTER EDUCATION
COURSE: COMPUTER /MATHEMATICS
MATRIC NO: [[[[[[[[[[[
LEVEL: 200L
SUPERVISOR NAME: -===
Submitted to
DEPARTMENT OF COMPUTER
SCIENCE, OSUN STATE COLLEGE OF
EDUCATION
ILESA.
PERIOD 20th JUNE TO OCTOBER 7th,2016.
CERTIFICATION
This is to certify that -==========--=with matric number 14so20 of department of computer education in osun
state college of education ilesa as successfully completed the four month of
industrial training assigned to her by the school authority between 20th
JUNE to 7th OCTOBER in agreement
with national council of college of education (N.C.E) regulation.
DEDICATION
This siwes is dedication to almighty God
for is mercy and strengths in my lifes throughout my siwes programme and so I
give thanks to God. Who gave me the great opportunity, energy, strengths and
encourage me to see the beginning and the end of this programme.
This siwes is also dedicated to my lovely
parent, Mr/Mrs. OLASUPO who has contributed towards my success morally,
financially spiritual and their support since beginning of my schooling till
this wonder day.
ACKNOWGEMENT
My sincere gratitude goes to
Almighty God, Who spread my life through the period of my academic pursuit in
the institution of learning. Student’s industrial work experience program.
My unreserved gratitude goes to my
precious MR/MRS. OLASUPO for their financial and moral support throughout my courses institution of learning.
I really express my gratitude to my
supervisor Mr. OJO who took pain to go through the siwes programmed
and give me useful information and advice.
TABLE
OF CONTENT
Title
Page…………………………………………… 1
Certification…............................................................ 2
Dedication.…………………………………………
3
Acknowledgement………………………………… 4
ABSTRACT…..…………………………………… 5
Table
of Content…………………………………… 6
Microsoft Excel
Web Design (HTML, DREAMWEAVER, SWTICHMAX,
FIREWORK)
Recommendation
Conclusion
Web
design is the act of designing a web
page, to design this tools are consider e.g HYPER TEXT MARKUP LANGUAGE(HTML).
HTML is a markup language for describing web documents (web pages)
HTML
document are described by HTML TAGS ,
each html tag described different document content
HYPERTEXT
MARKUP LANGUAGE(HTML)
WHAT
IS HTML: Html is a language for describing web pages.
HTML
is not a program language, it is a markup language.
A markup language is a set of markup tags
HTML uses markup tags to describe web pages
HTML TAGS : HTML markup tags are usually called HTML tags
HTML tags are keywords surround by angel brackets like <html>
HTML
tags normally come in pairs like
<b> and </b>
The
first tag in a pair is the start tag,
the second is the end tag
Start
and end tags are also called opening
tags and closing tags
HTML
Headings: HTML heading are define with <h1> <h6> tags
HTML
PARAGRAPH: HTML paragraph are define with <p> tags
HTML
ATTRIBUTE: HTML attributes
are defined with the <img> tag
HTML
ELEMENT: An HTML element is everything from the start tag
to the end tag:
HTML is a markup
language for describing web documents (web pages).
HTML Example:
A small HTML document:
<!DOCTYPE html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first
paragraph.</p>
</body>
</html>
Html Headings
headings are defined
with the <h1> to <h6> tags.
<h1> defines the most important heading.
<h6> defines the least important heading.
example
<h1>this is a heading</h1>
<h2>this is a
heading</h2>
<h3>this is a
heading</h3>
headings are important
use html headings for
headings only. don't use headings to make text big or bold
HTML Paragraphs
The HTML <p>
element defines a paragraph.
Example
<p>This is a
paragraph</p>
<p>This is
another paragraph</p>
Large or small screens, and resized windows
will create different results.
With HTML, you cannot change the output by
adding extra spaces or extra lines in your HTML code.
The browser will
remove extra spaces and extra lines when the page is displayed.
Any number of spaces,
and any number of new lines, count as only one space.
HTML Styling
Every HTML element has a default style
(background color is white, text color is black, text-size is 12px ...)
Changing the default style of an HTML element,
can be done with the style attribute.
This example changes the default background color
from white to lightgrey:
Example
<body
style="background-color:lightgrey">
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
Html Element
the
<html> element defines the whole document.
it
has a start tag <html> and an end tag </html>.
the element content is
another html element (the <body> element).
<html>
<body>
<h1>my first heading</h1>
<p>my first paragraph.</p>
</body>
</html>
the
<body> element defines the document body.
it has a start tag
<body> and an end tag </body>.
the element content is
two other html elements (<h1> and <p>).
<body>
<h1>my first heading</h1>
<p>my first paragraph.</p>
</body>
the
<h1> element defines a heading.
it has a start tag
<h1> and an end tag </h1>.
the element content is:
my first heading.
<h1>my first
heading</h1>
the
<p> element defines a paragraph.
it has a start tag
<p> and an end tag </p>.
the element content is:
my first paragraph.
<p>my first
paragraph.</p>
don't
forget the end tag
some
html elements will display correctly, even if you forget the end tag:
example
<html>
<body>
<p>this is a paragraph
<p>this is a paragraph
</body>
</html>
the
example above works in all browsers, because the closing tag is considered
optional.
never rely on this. it
might produce unexpected results and/or errors if you forget the end tag.
The HTML Style Attribute
The HTML style
attribute has the following syntax:
style="property:value"
The property is a CSS property. The value is a CSS value.
HTML Text Color
The color property
defines the text color to be used for an HTML element:
Example
<!DOCTYPE html>
<html>
<body>
<h1 style="color:blue">This
is a heading</h1>
<p style="color:red">This is
a paragraph.</p>
</body>
</html>
HTML Text Fonts
The font-family
property defines the font to be used for an HTML element:
Example
<!DOCTYPE html>
<html>
<body>
<h1
style="font-family:verdana">This is a heading</h1>
<p
style="font-family:courier">This is a paragraph.</p>
</body>
</html>
The <font> tag, supported in older versions of HTML,
is not valid in HTML5.
HTML
Text Size
The font-size property
defines the text size to be used for an HTML element:
Example
<!DOCTYPE html>
<html>
<body>
<h1
style="font-size:300%">This is a heading</h1>
<p
style="font-size:160%">This is a paragraph.</p>
</body>
</html>
HTML
Text Alignmen
The text-align property
defines the horizontal text alignment for an HTML element:
Example
<!DOCTYPE html>
<html>
<body>
<h1
style="text-align:center">Centered Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
The
<center> tag, supported in older versions of HTML, is not valid in HTML5t
.
Name
of Student
|
Csc111
|
Csc112
|
Csc113
|
Csc114
|
Csc115
|
Total
Score
|
Average
Score
|
Highest
Score
|
Lowest
Score
|
33
|
10
|
15
|
60
|
10
|
|||||
Dada
Oyin
|
15
|
10
|
05
|
15
|
17
|
||||
15
|
04
|
20
|
10
|
26
|
|||||
15
|
10
|
30
|
08
|
09
|
|||||
25
|
15
|
10
|
5
|
3
|
|||||
32
|
12
|
4
|
8
|
12
|
IF-FUNCTION
Conditional
function that always return a statement when an element in a particular meets
up to the user”s conditional criterials
Using
the appropriate function, find the total score
Using
the appropriate function , find the average for each student
Using
function find the element with the
highest score in
Using
appropriate function, find the lowest in
Round
up the average for each of the student
Convert
the score for csc113 to it Roman
number
From
the average score roundup. If the average score of a student is 40 above, then
the student pass else the student fail.
LET YOUR TIMELINE FILL WITH THIS ARTICLES, SHARE THIS POST..
Welcome to Tobilobablog, we appreciate your comment.....