Skip to content

dhivya0720/Figma

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Ex08 Event Registration Web Application

Date:04/01/2026

AIM:

To design, develop and deploy a web application for event registration using Figma UI tool.

UI DESIGN TOOL:

Figma

DESIGN STEPS:

Step 1:

Use frames to represent screens or sections.

Step 2:

Add column grids for consistent spacing and alignment.

Step 3:

Insert shapes, text, buttons, and icons.

Step 4:

Use Auto Layout for flexible, responsive design.

Step 5:

Define color, text, and effect styles globally for consistency.

Step 6:

Name layers logically and group related elements.

Step 6:

Link frames to show navigation or interactions.

Step 7:

Select the specific frame while generating code using Anima plugin.

CODE:

index.html

<!DOCTYPE html>
<html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta charset="utf-8" />
    <link rel="stylesheet" href="globals.css" />
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <div class="frame"><div class="div"></div></div>
  </body>
</html>

globals.html

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

style.css

frame {
  background-color: #ffffff;
  display: grid;
  justify-items: center;
  align-items: start;
  width: 100vw;
}

.frame .div {
  background-color: #ffffff;
  width: 100px;
  height: 100px;
}

OUTPUT:

alt text

RESULT:

The program to design, develop and deploy a web application for event registration using Figma UI tool is completed successfully.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 85.5%
  • CSS 9.4%
  • HTML 5.1%