Skip to content

Commit

Permalink
Files uploaded
Browse files Browse the repository at this point in the history
  • Loading branch information
izicodes committed Oct 14, 2023
1 parent 1dff56f commit e36720c
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
14 changes: 14 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>Hello Izzy Widget</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="widget-container">
<div class="hello-box">
Hello Izzy
</div>
</div>
</body>
</html>
15 changes: 15 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/* Add your styles for the widget here */
.widget-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.hello-box {
background-color: pink;
color: rgb(92, 13, 13);
padding: 20px;
border-radius: 20px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

0 comments on commit e36720c

Please sign in to comment.