html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<a href="mailto:example@gmail.com" class="mailadd">MailMe</a>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
body {
width:100%;
padding:10px;
margin:0;
}
a{
text-decoration:none;
}
.mailadd{
top:10px;
margin-top:20px;
margin:20px;
font-size:20px;
height:40px;
width:auto;
background-color: #ff0000;
color: #ffffff;
font-weight:bold;
border:3px solid #00ff00;
border-radius:4px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run