CSS Microproject Report FINAL
CSS Microproject Report FINAL
DEPARMENT OF
COMPUTER ENGNIEERING
ACKNOWLEDGE
The success and final outcome of this project required a lot of guidance and assistance from
many people and we are extremely privileged to have got this all along the completion of our
project. All that we have done is only due to such supervision and assistance and we would
not forget to thank them.
We owe our deep gratitude to our project guide N. BORASE who took keen interest on our
project work and guided us all along, till the completion of our project work by providing all
the necessary information for developing a good system.
We are thankful to and fortunate enough to get constant encouragement, support and
guidance from all the Teaching staffs of Department of Computer Engineering which helped
us in successfully completing our project work .
2. RATIONALE ……………………………………………………. 4
• Resource Required :-
• Action Plan :-
Course Outcomes :-
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<center>
<title>Calculate me! - A calculator made my me</title></center>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="utils.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="text-center">Welcome to Calculate me!</h1>
<div class="container flex flex-col items-center mx-auto m-w-20">
<div class="row">
<input class="input" type="text"/>
</div>
<div class="row">
<button class="button">C</button>
<button class="button">%</button>
<button class="button">M+</button>
<button class="button">M-</button>
</div>
<div class="row">
<button class="button">7</button>
<button class="button">8</button>
<button class="button">9</button>
<button class="button">*</button>
</div>
<div class="row">
<button class="button">4</button>
<button class="button">5</button>
<button class="button">6</button>
<button class="button">/</button>
</div>
<div class="row">
<button class="button">1</button>
<button class="button">2</button>
<button class="button">3</button>
<button class="button">+</button>
</div>
<div class="row">
<button class="button">0</button>
<button class="button">.</button>
<button class="button">=</button>
<button class="button">-</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>
• CSS Code :-
@import
url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&family=Ubuntu:wght@30
0&display=swap');
html, body {
height: 100%;
width: 100%;
font-family: 'Roboto', sans-serif;
}
.button{
width: 66px;
padding: 20px;
margin: 0 3px;
border: 2px solid black;
border-radius: 9px;
cursor: pointer;
}
.row{
margin: 8px 0;
}
.row input{
width: 291px;
font-size: 20px;
margin: 0;
padding: 10px 0px;
border: 2px solid black;
border-radius: 5px;
}
•
•
•
•
•
• Output :