html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<img src="https://mimo.app/i/emmy.png" width="150">
<h1>Emmy</h1>
<h2>Aspiring Software Developer</h2>
<p>Welcome to my page!</p>
<a href="https://www.instagram.com/getmimo" target="_blank">Instagram</a>
<a href="https://www.tiktok.com/@mimo_org" target="_blank">TikTok</a>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
img {
border-radius: 75px;
}
h2 {
font-size: 24px;
}
body {
background-color: slateblue;
font-family: 'Trebuchet MS';
color: white;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run