HTML
CSS
Read or watch:
- HTML: HyperText Markup Language
- HTML Reference
- CSS: Cascading Style Sheets
- CSS Reference
- CSS Layout Cookbook
card.html
Click to show/hide file contents
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Animal Trading Card</title>
</head>
<body>
</body>
</html>
style.css
Click to show/hide fiile contents
/* Add CSS here */
* {
box-sizing: border-box;
}
html {
font-size: 14px;
}
body {
background-image: url();
}