CSS Project
CSS Project
CSS Project
2. INTRODUCTION 5
4. RESULT/OUTPUT 10
SKILL DEVELOPMENT
6. 10
7. CONCLUSION 11
1. MICRO - PROJECT PROPOSAL
1.0 RATIONAL:
Java is limited featured client side programming language. JavaScript runs at the client
end through the user’s browser without sending message back and forth to the server. It is
widely used by the web developers to do things such as build dynamic web pages,
respond to events, create interactive forms, validate data that the visitor enters into a
form, control the browser etc.
This course helps student to create highly interactive web pages using these features.
1
5.0 PROPOSED METHODOLOGY:
2
8.0 ACTUAL RESOURCES REQUIRED:
3
10. NAMES OF TEAM MEMBER WITH ROLL NO :
4
DEPARTMENT OF COMPUTER ENGINEERING
INTRODUCTION
JavaScript is a cross-platform, object-oriented scripting language used to make webpages interactive
(e.g., having complex animations, clickable buttons, popup menus, etc.). There are also more
advanced server side versions of JavaScript such as Node.js, which allow you to add more
functionality to a website than downloading files (such as realtime collaboration between multiple
computers). Inside a host environment (for example, a web browser), JavaScript can be connected to
the objects of its environment to provide programmatic control over them. JavaScript contains a
standard library of objects, such as Array, Date, and Math, and a core set of language elements such as
operators, control structures, and statements. Core JavaScript can be extended for a variety of purposes
by supplementing it with additional objects
History of JavaScript
JavaScript was invented by Brendan Eich in 1995. It was developed for Netscape 2, and became the
ECMA-262 standard in 1997. After Netscape handed JavaScript over to ECMA, the Mozilla
foundation continued to develop JavaScript for the Firefox browser. Mozilla's latest version was 1.8.
History of HTML
HTML was created by Sir Tim Berners-Lee in late 1991 but was not released officially, published in
1995 as HTML 2.0. HTML 4.01 was published in late 1999 and was a major version of HTML. HTML
1.0 was released in 1993 with the intention of sharing information that can be readable and accessible
via web browsers.
History of CSS
Style sheets have existed in one form or another since the beginnings of Standard Generalized Markup
Language (SGML) in the 1980s, and CSS was developed to provide style sheets for the web. One
requirement for a web style sheet language was for style sheets to come from different sources on the
web.
5
3. CREATING A LOGIN PAGE USING CSS.
Code:
<html>
<head>
sans-serif;
* { box-sizing: border-
box;
.bg-img {
image: url("csmss.jpg");
min-height: 650px;
6
/* Center and scale the image nicely */
position: relative;
.container {
position: absolute;
right: 0;
16px; background-color:
white;
input[type=text], input[type=password] {
background: #f1f1f1;
7
input[type=text]:focus, input[type=password]:focus {
.btn {
background-color: #04AA6D;
color: white;
pointer; width:
100%;
opacity: 0.9;
.btn:hover {
opacity: 1; }
</script>
</style>
</head>
<body>
<div class="bg-img">
8
<form action="/action_page.php" class="container">
<h1>Login</h1>
<label for="email"><b>Email</b></label>
<label for="psw"><b>Password</b></label>
</form>
</div>
<p>This example creates a form on a responsive image. Try to resize the browser
window to see how it always will cover the whole width of the screen, and that it
scales nicely on all screen sizes.</p>
</body>
</html>
9
4. RESULT/OUTPUT
We hope these ten CSS project ideas inspire you to start your project building journey using
CSS. Granted that these projects are quite time-intensive, the end result will be promising. You
will have a better grasp of CSS concepts and understand how to implement them in different
scenarios.
7. SKILL DEVELOPMENT
Communication
Leadership
Team Management
10
Personal Organization
8. CONCLUSION
11