Project report on website made by me as a part of GGSIPU syllabus. It includes the screen shots with the source code of 13 pages with a Contact Form. Link to live website is http://www.arham…Full description
Project report on website made by me as a part of GGSIPU syllabus. It includes the screen shots with the source code of 13 pages with a Contact Form. Link to live website is http://www.arham…Full description
Full description
project report on social networking websiteFull description
The user can Search the job and and upload the Resume , and the job provider can see the information of job seeker.Full description
Full description
Full description
report on job satisfactionFull description
Deskripsi lengkap
MBA Project Report on Agrochemicals
Description : Report by Nishant Baghel. Ansal institute of technology
For its sustenance on the earth, every living organism requires food, which is quite essential for carrying out its physical and mental activities, growth and development. For normal growth …Full description
Full description
My Project for the bachulors Degree from Preston University !! Incase of contact this is my ID "[email protected]"Full description
summer training reportFull description
Full description
PROJECT REPORT ON JOB CONSULTANCY
SUBMITTED IN THE PARTIAL FULFILLMENT OF THE REQUIREMENT FOR THE DEGREE Bsc-IT
UNDER THE GUIDANCE OF
SUBMITTED BY
Certificate This is to certify that the project entitled “AKC JOB CONSULTANCY” is a bonafide record of the summer project carried out by Mr. under my supervision and guidance of the requirement for the degree B.Sc-IT from University.
(Project Guide)
ACKNOWLEDGEMENT
I am heartily thankful to my supervisor, Mr whose encouragement, guidance and support from the initial to the final level enabled me to develop an understanding of the project. Lastly, I offer my regards and blessings to all of those who supported me in any respect during the completion of the project.
Name
INDEX
I.
SOFTWARE REQUIREMENT ANALYSIS Justification and need of the system
II.
BRIEF OF TOOLS AND LANGUAGES USED HTML CSS
III.
DESIGNING AND CODING Used HTML for coding CSS for styling
IV.
RESULT Output of coding
V. VI.
FURTHER IMPROVEMENTS BIBLIOGRAPHY
I.
HARDWARE SPECIFICATION COMPONENTS
MINIMUM REQUIREMENT
PROCESSOR
PENTIUM OR AMD
RAM
256MB OR HIGHER
HARDISK OTHER
200MB COLOR MONITOR, KEYBROAD AND MOUSE
SOFTWARE SPECIFICATION
OPERATING SYSTEM (WINDOWS XP OR HIGHER) INTERNET EXPLORER/FIREFOX/GOOGLE CHROME
A BRIEF INTRODUCTION ABOUT TOOLS AND LANGUAGES USED IN THE PROJECT.
What is HTML? HTML is a language for describing web pages.
HTML stands for Hyper Text Markup Language HTML is not a programming 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 surrounded by angle brackets like HTML tags normally come in pairs like and The first tag in a pair is the start tag, the second tag is the end tag Start and end tags are also called opening tags and closing tags
HTML Documents = Web Pages
HTML documents describe web pages HTML documents contain HTML tags and plain text HTML documents are also called web pages
The purpose of a web browser (like Internet Explorer or Firefox) is to read HTML documents and display them as web pages. The browser does not display the HTML tags, but uses the tags to interpret the content of the page:
My First Heading
My first paragraph.
Example Explained
The text between and describes the web page The text between and is the visible page content The text between
and
is displayed as a heading The text between
and
is displayed as a paragraph
HTML Headings HTML headings are defined with the
to
tags. Example
This is a heading
This is a heading
This is a heading
HTML Paragraphs HTML paragraphs are defined with the
* The start tag is often called the opening tag. The end tag is often called the closing tag.
HTML Element Syntax
An HTML element starts with a start tag / opening tag An HTML element ends with an end tag / closing tag The element content is everything between the start and the end tag Some HTML elements have empty content Empty elements are closed in the start tag Most HTML elements can have attributes
Nested HTML Elements Most HTML elements can be nested (can contain other HTML elements). HTML documents consist of nested HTML elements.
HTML Document Example
This is my first paragraph.
The example above contains 3 HTML elements.
HTML Example Explained The
element:
This is my first paragraph.
The
element defines a paragraph in the HTML document. The element has a start tag
and an end tag
. The element content is: This is my first paragraph. The element:
This is my first paragraph.
The element defines the body of the HTML document. The element has a start tag and an end tag . The element content is another HTML element (a p element). The element:
This is my first paragraph.
The element defines the whole HTML document. The element has a start tag and an end tag . The element content is another HTML element (the body element).
Don't Forget the End Tag Most browsers will display HTML correctly even if you forget the end tag:
This is a paragraph
This is a paragraph The example above will work in most browsers, but don't rely on it. Forgetting the end tag can produce unexpected results or errors.
Empty HTML Elements HTML elements with no content are called empty elements. Empty elements can be closed in the start tag. is an empty element without a closing tag (the tag defines a line break). In XHTML, XML, and future versions of HTML, all elements must be closed. Adding a slash to the start tag, like , is the proper way of closing empty elements, accepted by HTML, XHTML and XML. Even if works in all browsers, writing instead is more future proof.
HTML Line Breaks Use the tag if you want a line break (a new line) without starting a new paragraph: Example
This is a para graph with line breaks
Try it yourself »
The element is an empty HTML element. It has no end tag.
HTML Text Formatting Tags Tag
Description
Defines bold text
Defines big text
Defines emphasized text
Defines italic text
Defines small text
Defines strong text
Defines subscripted text
Defines superscripted text
Defines inserted text
Defines deleted text
HTML Style Example - Background Color The background-color property defines the background color for an element: Example
This is a heading
This is a paragraph.
The style attribute makes the "old" bgcolor attribute obsolete.
HTML Style Example - Font, Color and Size The font-family, color, and font-size properties defines the font, color, and size of the text in an element: Example
A heading
A paragraph.
The style attribute makes the old tag obsolete.
HTML Style Example - Text Alignment The text-align property specifies the horizontal alignment of text in an element: Example
This is a heading
The heading above is aligned to the center of this page.
HTML Hyperlinks (Links) A hyperlink (or link) is a word, group of words, or image that you can click on to jump to a new document or a new section within the current document. When you move the cursor over a link in a Web page, the arrow will turn into a little hand.
HTML Link Syntax The HTML code for a link is simple. It looks like this: Link text The href attribute specifies the destination of a link. Example Visit akc which will display like this: Visit akcjobconsultancy Clicking on this hyperlink will send the user to akc job consultancy' homepage. Tip: The "Link text" doesn't have to be text. You can link from an image or any other HTML element.
HTML Links - The target Attribute The target attribute specifies where to open the linked document. The example below will open the linked document in a new browser window: Example Visit akc!
HTML Links - The name Attribute The name attribute specifies the name of an anchor. The name attribute is used to create a bookmark inside an HTML document. Bookmarks are not displayed in any special way. They are invisible to the reader.
HTML The Tag and the Src Attribute In HTML, images are defined with the tag. The tag is empty, which means that it contains attributes only, and has no closing tag. To display an image on a page, you need to use the src attribute. Src stands for "source". The value of the src attribute is the URL of the image you want to display. Syntax for defining an image: The URL points to the location where the image is stored. An image named "boat.gif", located in the "images" directory on "www.akcjobconsulatancy.com" has the URL: www.akcjobconsultancy.com/images/boat.gif. The browser displays the image where the tag occurs in the document. If you put an image tag between two paragraphs, the browser shows the first paragraph, then the image, and then the second paragraph.
HTML The Alt Attribute The required alt attribute specifies an alternate text for an image, if the image cannot be displayed. The value of the alt attribute is an author-defined text:
The alt attribute provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader).
HTML Tables Tables are defined with the
tag. A table is divided into rows (with the
tag), and each row is divided into data cells (with the
tag). td stands for "table data," and holds the content of a data cell. A
tag can contain text, links, images, lists, forms, other tables, etc. Table Example
row 1, cell 1
row 1, cell 2
row 2, cell 1
row 2, cell 2
How the HTML code above looks in a browser: row 1, cell 1 row 1, cell 2 row 2, cell 1 row 2, cell 2
HTML Tables and the Border Attribute If you do not specify a border attribute, the table will be displayed without borders. Sometimes this can be useful, but most of the time, we want the borders to show. To display a table with borders, specify the border attribute:
Row 1, cell 1
Row 1, cell 2
HTML Table Headers Header information in a table are defined with the
tag. The text in a th element will be bold and centered.
Header 1
Header 2
row 1, cell 1
row 1, cell 2
row 2, cell 1
row 2, cell 2
How the HTML code above looks in a browser: Header 1
HTML Unordered Lists An unordered list starts with the
tag. Each list item starts with the
tag. The list items are marked with bullets (typically small black circles).
Coffee
Milk
How the HTML code above looks in a browser:
Coffee Milk
HTML Ordered Lists An ordered list starts with the tag. Each list item starts with the
tag. The list items are marked with numbers.
Coffee
Milk
How the HTML code above looks in a browser: 1. Coffee 2. Milk
HTML Definition Lists A definition list is a list of items, with a description of each item. The
tag defines a definition list. The
tag is used in conjunction with
(defines the item in the list) and
(describes the item in the list):
Coffee
- black hot drink
Milk
- white cold drink
How the HTML code above looks in a browser: Coffee - black hot drink Milk - white cold drink
HTML Forms HTML forms are used to pass data to a server. A form can contain input elements like text fields, checkboxes, radio-buttons, submit buttons and more. A form can also contain select lists, textarea, fieldset, legend, and label elements. The
HTML Forms - The Input Element The most important form element is the input element. The input element is used to select user information. An input element can vary in many ways, depending on the type attribute. An input element can be of type text field, checkbox, password, radio button, submit button, and more. The most used input types are described below.
Text Fields defines a one-line input field that a user can enter text into: How the HTML code above looks in a browser:
First name: Last name: Note: The form itself is not visible. Also note that the default width of a text field is 20 characters.
Password Field defines a password field: How the HTML code above looks in a browser: Password: Note: The characters in a password field are masked (shown as asterisks or circles).
Radio Buttons defines a radio button. Radio buttons let a user select ONLY ONE one of a limited number of choices: How the HTML code above looks in a browser: Male Female Checkboxes defines a checkbox. Checkboxes let a user select ONE or MORE options of a limited number of choices.
How the HTML code above looks in a browser:
I have a bike I have a car Submit Button defines a submit button. A submit button is used to send form data to a server. The data is sent to the page specified in the form's action attribute. The file defined in the action attribute usually does something with the received input: How the HTML code above looks in a browser:
Username:
Submit
If you type some characters in the text field above, and click the "Submit" button, the browser will send your input to a page called "html_form_action.asp". The page will show you the received input.
Color Values HTML colors are defined using a hexadecimal notation (HEX) for the combination of Red, Green, and Blue color values (RGB). The lowest value that can be given to one of the light sources is 0 (in HEX: 00). The highest value is 255 (in HEX: FF). HEX values are specified as 3 pairs of two-digit numbers, starting with a # sign.
CSS Style sheets are a very powerful tool for the Web site developer. They give you the chance to be completely consistent with the look and feel of your pages, while giving you much more control over the layout and design than straight HTML ever did. Invented in 1997, Cascading Style Sheets are just now starting to be widely used among browsers and Web developers are learning to be more comfortable with them. Those of you who use HomeSite 4.0 know that they are eventually going to take the place of tags such as , which have been deprecated in HTML 4.0. There are three parts to CSS: the styles, their placement, and the fact that they can cascade.
How to Use Styles When a browser reads a style sheet, it will format the document according to it. There are three ways of inserting a style sheet:
External Style Sheet An external style sheet is ideal when the style is applied to many pages. With an external style sheet, you can change the look of an entire Web site by changing one file. Each page must link to the style sheet using the tag. The tag goes inside the section:
Internal Style Sheet
An internal style sheet can be used if one single document has a unique style. Internal styles are defined in the section of an HTML page, by using the
Inline Styles An inline style can be used if a unique style is to be applied to one single occurrence of an element. To use inline styles, use the style attribute in the relevant tag. The style attribute can contain any CSS property. The example below shows how to change the text color and the left margin of a paragraph:
This is a paragraph.
The HTML head Element The head element is a container for all the head elements. Elements inside can include scripts, instruct the browser where to find style sheets, provide meta information, and more. The following tags can be added to the head section: , , , <meta>, <script>, and
The HTML meta Element Metadata is information about data. The <meta> tag provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable. Meta elements are typically used to specify page description, keywords, author of the document, last modified, and other metadata. The <meta> tag always goes inside the head element. The metadata can be used by browsers (how to display content or reload page), search engines (keywords), or other web services. The following meta element defines keywords for a page: <meta name="keywords" content="HTML, CSS, XML" />
.
DESIGNING AND CODING
CODING FOR THE HOME PAGE AKC JOB CONSULTANCY <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
NEW JOBS
JOBS IN DELHI
JOBS IN PUNE
JOBS IN BANGLORE
HOT OPPURTUNITY
the hottest job oppurunity in town.....
UPCOMINGS JOB
the latest updates from companies it self....
Job Highlights
Job Highlights
Union Public Service Commission invites application for various posts.
United Bank of India needs Probationary Officer and Probationary Clerks.
National Aluminium Company Limited needs Graduate Engineer Trainees (GETs) and Management Trainees (MTs).
The Indian Army invites applications for Short Service Commission in Remount Veterinary Corps.
Ministry of Environment and Forests requires Scientists.
Staff Selection Commission declares the final result for the posts of Sub-Inspectors in Central Police Organisations (COPs) examinations, 2009
Department of Atomic Energy, Mumbai requires Technical Officers.
Brahmputra Valley Corporation Fertilizer Limited invites applications for various posts.
Jobs in IT | Banking |Automobile |Civil |Aviation |Fashion |Hotel |Mechanical
CODING FOR RESUME PAGE
jobs consultancy
AKC JOB CONSULTANCY
CODING FOR ABOUT US PAGE
about us
ABOUT US
A renowned name, AKC Job Consultancy acts as a gateway to provide a wide range of services for the human resource needs of the
companies. We are a dedicated team of professional consultants offering top of the line executive search and selection over a wide
geographical area that spans across Asia Pacific, Africa, Europe and American markets.
Our range of client services includes executive search & selection, advertised selection and Vendor Management Services that are delivered
through our integrated suite of leadership services.
We are a privately held company having globally interlinked professionals with extensive understanding of the various aspects of multinational
and local business and industry's specific demands. Our entrepreneurial creativity of locally owned and globally driven partnerships makes us
the world's premier executive search organization to serve clients all across the globe.
Thanks to our unflinching commitment to the best interests of the businesses and job seekers, we have gained up a reputation for being a
reliable, fair-minded and straightforward recruitment solution provider. Combined with our methodology and work ethics, which has helped us in
getting the jobs done quickly and efficiently, this reputation has established us at the forefront in the field of our business.
Service Quality
At AKC Job Consultancy , service quality is our top priority . We have adopted international practice and methodology to ensure timely and
successful executive search. Utilizing the in depth market knowledge and comprehensive research in providing best solution to our customers.
We give prime emphasis to R & D that helps in building a cohesive professional group covering a wide spectrum of industrial practices.
Committed to timely and efficient execution of assignments, we focus on the significance of excellent human capital to produce sustained
growth and profits round the year.
Our Multifaceted Team
We have a multifaceted team of consultants ,who are highly experienced and specialize in the industry / sectors that they serve. Our
ability in attracting the best talent has enabled us in achieving great heights, which has made us today among the top ranked HRD
consultants..Equipped with newest technological advancements and techniques, we provide extensive quality assurance in our passion to serve
the clients. Our experienced professionals strictly follow the tradition of keeping a track of the changing needs of the clients so as to ensure maximum
satisfaction in this era of ever changing scenarios. Our team takes time to make comprehensive understanding of clients' business and is committed to provide the unparalleled quality and
services. Our Commitments At AKC Job Consultancy , we are committed to build outstanding management teams for our clients to compete in the global market. We
provide the perfect match and solutions for the human resource needs of our clients through long-term client relationships built on experience,
insight and teamwork.
We promise
To work in close coordination with our clients
To provide value-added expertise during and after every assignment
To execute each and every assignment diligently and with integrity
To adhere to the strict norms of the client's work culture their code of ethics
To thoroughly check short-listed candidates' diligence
To treat each and every candidate respectfully
To provide guarantee period for each and every recruitment
CODING FOR EMPLOYER’S PAGE Page-1 Browse Employers List:-1234
1. We do not sell or misuse any of your private registration information like name, address or email.
2. We may sometimes collect some information like browser details or IP for security purposes and also those purposes which help us to provide better services to users.
3. You can opt out of our service at any instant of time.
4. It is your sole responsibility and risk to correspond with the members of this site, as we have not made any effort to establish the authenticity of the person.
More Elaborate Information
AKC job consultancy's commitment to maintaining your privacy AKC job consultancy's Privacy Statement has been created because we value our users and recognise their right to keep personal information private. This statement discloses our information gathering and dissemination practices for all sites managed by AKC job consultancy.
Collecting information on AKC job consultancy visitors
AKC job consultancy collects information on our site visitors collectively including which sections of the site are most frequently visited, how often and for how long. This data is always used as aggregated, nonpersonal information. AKC job consultancy utilises this information to improve and enhance our services by monitoring the areas on the site which are most popular to you. This aggregated information may be shared with AKC job consultancy partners to provide them with an overview of how AKC job consultancy visitors use the site. This is done for the purposes of providing you with the best online career management services.
IP Addresses AKC job consultancy's web servers gather your IP address to assist with the diagnosis of problems or support issues with our services. Again, information is gathered in aggregate only and cannot be traced to an individual user.
Cookies & Applets AKC job consultancy uses cookies to provide you with a better experience. These cookies and applets allow you to use specific services such as JobAutoResponder (an alert service which emails your chosen jobs), auto login facility (if an user chooses that option), etc,.
Users who do not wish to receive cookies can instruct their web browsers to refuse them. However, doing so will prevent access to some areas of the site and limit your use of some of the AKC job consultancy services.
Third Party Measurement In order to better understand our users, AKC job consultancy may use third party measurement companies' services, to assess site traffic. Tracking code is used to collect the following information on the usage of the AKC job consultancy site: 1. The number of page views (or page impressions) that occur on AKC job consultancy; 2. The number of unique visitors to AKC job consultancy; 3. How long these unique visitors (on average) spend on AKC job consultancy when they do visit; and Common entry and exit points into AKC job consultancy, etc,.
This aggregate, non-personal information is collated and provided to AKC job consultancy to assist in analysing the usage of the site. This data is also accessible by media organisations and research companies, for the purpose of conducting industry comparisons with other Internet websites.
Collecting information on AKC job consultancy Registered 'My Account' Members
As part of registering with AKC job consultancy, we collect personal information about you in order for you to take full advantage of AKC job consultancy's services. To do this it may be necessary for you to provide additional information to AKC job consultancy as detailed below.
Registration Registration is completely optional. However, registration for 'My Account' services allows you to take advantage of more of the tools and resources that assist you in finding a job. Registration includes submitting your email address. You may access and update the information through the various buttons available in the 'My Account' section of the site
Auto Match Responder Auto Match Responder is a service which delivers the latest job matches to the candidates and the latest matching list of candidates to employers and consultants. This service can be cancelled at any instant of time through the 'My Account' section.
Resumes As part of the online job service, AKC job consultancy provides registered members with the option of creating a resume to use for application. Your registration information and email is not disclosed unless you respond to a response from the person who contact you. At the same time, email address of the responder is definately disclosed to the person to whom the responder responds.
Private AKC job consultancy Resumes All information provided when creating these resumes including name, address, email address, telephone numbers, employment and educational history are used for the purposes of facilitating your job AKC job consultancying efforts. Users can modify or delete their resume at any time by going to the 'My Account' area of the site.
Online Applications Making an online application to a job advertisement on AKC job consultancy is a free and optional service that does not require registration when it is not emailed, but requires registration when an application has to be emailed to the employer or the consultant. Job applications require you to complete mandatory fields (first name, last name, phone and email) so that the advertiser can identify and contact you. Your application, including attachments and cover letters, are forwarded directly on to the third party advertiser. This information may also be disclosed to AKC job consultancy's service providers and contractors from time to time who assist us to deliver our products and services.
By applying to a position advertised on AKC job consultancy you are requesting that AKC job consultancy pass the information to the Advertiser as a part of your application.
Additionally, you have the right to request your personal information direct from Advertisers on AKC job consultancy.
Email communications from AKC job consultancy AKC job consultancy also provides you with selected information about job seeking and career-related topics in our email newsletter AKC job consultancy News Update. This free service is sent to registered users and provides the option of opting out of receiving these by changing your preferences in 'My Account'. AKC job consultancy may also make you aware of additional products and services which form part of your relationship with AKC job consultancy.
Storage & Security of Personal Information AKC job consultancy takes all reasonable steps to ensure the security of our system. AKC job consultancy allows you to access your information at any time to keep it accurate and up to date. Any information which we hold for you is stored on secure servers that are protected in controlled facilities.
In addition, our employees and the contractors who provide services related to our information systems are obliged to respect the confidentiality of any personal information held by AKC job consultancy. However, AKC job consultancy will not be held responsible for events arising from unauthorised access of your personal information.
You can also play an important role in keeping your personal information secure, by maintaining the confidentiality of any password and accounts used on the AKC job consultancy site. Please notify us immediately at help@AKC job consultancy.com, if there is any unauthorised use of your account by any other Internet user or any other breach of security.
AKC job consultancy Partners , Advertisers , Employers & Consultants AKC job consultancy provides links and passes online application to third party sites. The use of your information by these third party sites is not within the control of AKC job consultancy and we cannot accept responsibility for the conduct of these companies. Advertisers who place job ads on AKC job consultancy are asked to comply with Indian Information Technology Act of 2000's privacy policy with regard to their own information handling practices.
You may also directly contact advertisers to request access to any personal information that you have sent as part of an application.
Transborder data flows Sometimes, we transfer information to persons outside India (e.g. a contractor located in the USA who provides us with services). By giving us your personal information, you consent to such disclosures. In addition, we believe that the recipients of such information are subject to a law, binding scheme or contract which effectively upholds principles for fair handling of the information.
Feedback AKC job consultancy welcomes ideas and feedback about all aspects of the site. AKC job consultancy stores feedback that users send to us. This feedback will be used to administer and refine the service and may be shared with AKC job consultancy partners either in aggregate form or with specific identifying characteristics removed.
Privacy & Site Changes From time to time, AKC job consultancy may review and update its privacy statement. Revised versions will be updated on the website.
Contact Us If you have any questions about this privacy statement, the practices of this site, or your dealings with AKC job consultancy, you can contact us at userhelp@AKC job consultancy.com. Regards Webmaster, AKC job consultancy. For more details, you can mail us at webmaster@AKC job consultancy.
RESULTS
OUTPUT OF THE HOME PAGE
OUTPUT OF ABOUT US PAGE
OUTPUT OF EMPLOYER’S PAGE
OUTPUT OF LINKS ON EMPLOYER’S PAGE
OUTPUT OF NEW OPENING’S PAGE
OUTPUT OF LINKS ON NEW OPENING’S PAGE
OUTPUT OF RESUME PAGE
FURTHER IMPROVEMENT
FURTHER IMPROVEMENT’S
This website can be further enhanced by adding following feature
The website can be made dynamic by using database management systems. The designing of the website can be further improved. There can be a login mechanism for the users.
BIBLIOGRAPHY
BIBLIOGRAPHY
Build Your Own Web Site The Right Way by Ian Lloyd
Teach Yourself CSS in 24 Hours by Kynn Bartlett CSS Tutorial from “w3c schools” WEBSITE