📂 mysite
├── index.html
├── style.css
├── script.js
├── 📂 images
│ banner.png
│ bg.png
│ mascot.png
│ button.png
│ frame.png
│ icon.png
│
├── 📂 graphics
│ blinkies.gif
│ stamp.png
│ pixel.gif
│
├── 📂 pages
│ about.html
│ gallery.html
│ diary.html
│ links.html
│
└── 📂 music
song.mp3
HTML Layout
♡ My Cute Site ♡
Welcome!!
Hello!! Welcome to my little internet home ♡
CSS
body{
background:#ffd6ec;
background-image:url(images/bg.png);
font-family:"Verdana";
font-size:14px;
color:#d95c9b;
}
#container{
width:1200px;
margin:auto;
background:white;
border:6px solid #f6a8cb;
border-radius:25px;
box-shadow:0 0 20px hotpink;
}
header{
padding:10px;
}
header img{
width:100%;
border-radius:15px;
}
#layout{
display:grid;
grid-template-columns:
250px
1fr
250px;
gap:15px;
padding:15px;
}
nav,
main,
aside{
background:#fff5fb;
border:3px solid #f6b0d1;
padding:12px;
border-radius:10px;
}
nav a{
display:block;
padding:7px;
margin:5px;
text-decoration:none;
background:#ffd8ec;
color:#d95c9b;
border-radius:5px;
}
nav a:hover{
background:#ffaad7;
color:white;
}
h1,h2{
text-align:center;
}
footer{
text-align:center;
padding:15px;
}
Cute Things To Add
⭐ Pixel cursors
body{
cursor:url(images/cursor.cur), auto;
}
⭐ Floating hearts
animation: float 3s infinite;
⭐ Music player
⭐ Marquee
⭐ Buttons
⭐ Blinkies
⭐ Visitor counter
⭐ Status box
Currently drawing cute girls...
Color Palette
#ffd3ea
#ffc0df
#ff9fcb
#f88dc5
#fff5fb
#ffffff
#d96da6
Fonts
Verdana
Tahoma
MS PGothic
Pixel Operator
Tiny5
Silkscreen
Cute Widgets
♡ Changelog
♡ To-do list
♡ Diary
♡ Mood
♡ Song of the week
♡ Favorite character
♡ Webrings
♡ Fanlistings
♡ Shrine pages
♡ Art gallery
♡ Resources
♡ Stamps
Fun JavaScript
Random mascot every refresh
const mascots = [
"images/cat1.png",
"images/cat2.png",
"images/cat3.png"
];
document.getElementById("mascot").src =
mascots[Math.floor(Math.random()*mascots.length)];
.window{
border:3px solid #f6b0d1;
background:#fff8fc;
border-radius:8px;
overflow:hidden;
}
.titlebar{
display:flex;
justify-content:space-between;
align-items:center;
background:#ffb7dc;
color:white;
padding:4px 8px;
font-weight:bold;
font-size:13px;
}
.buttons span{
display:inline-block;
width:18px;
text-align:center;
background:#ffd7eb;
color:#d95c9b;
margin-left:3px;
border-radius:3px;
}
.content{
padding:12px;
}