Uiuxfront
Uiuxfront
(Autonomous), Hosur
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
(Accredited by NBA)
CASE STUDY
TEAM MEMBERS:
DEEPICASREE S (6176AC22UCS026)
GRISHMA S (6176AC22UCS050)
HTML: (ui_ux1.html)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<div class="abstract-container">
<div class="circle"></div>
<div class="content">
<h2>Innovative Ideas</h2>
</div>
</div>
<div class="triangle"></div>
<div class="content">
<h2>Dynamic Motion</h2>
</div>
</div>
<div class="square"></div>
<div class="content">
<h2>Structured Creativity</h2>
</div>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>
CSS: (styles.css)
/* Global Styles */
body, html {
margin: 0;
padding: 0;
background-color: #111;
color: #fff;
overflow-x: hidden;
height: 100%;
.abstract-container {
display: flex;
flex-direction: column;
align-items: center;
padding: 50px;
gap: 50px;
.abstract-section {
width: 100%;
height: 300px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
cursor: pointer;
background-color: #222;
border-radius: 20px;
.abstract-section:hover {
transform: scale(1.05);
position: absolute;
opacity: 0.3;
.circle {
width: 150px;
height: 150px;
background-color: #e91e63;
border-radius: 50%;
.triangle {
width: 0;
height: 0;
.square {
width: 150px;
height: 150px;
background-color: #ffeb3b;
.content {
z-index: 1;
text-align: center;
.content h2 {
font-size: 2.5em;
margin-bottom: 10px;
.content p {
font-size: 1.2em;
@keyframes moveCircle {
0%, 100% {
50% {
}}
@keyframes moveTriangle {
0%, 100% {
50% {
@keyframes moveSquare {
0%, 100% {
50% {
@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(30px);
100% {
opacity: 1;
transform: translateY(0);
}
OUTPUT:
RESULT:
Thus the interface using UI style guides has been developed successfully using HTML and CSS.