scrimba
Frontend Career Path
Making websites interactive
Build a Mobile App
Aside: Web Application Manifest
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Aside: Web Application Manifest
AboutCommentsNotes
Aside: Web Application Manifest
Expand for more info
index.html
run
preview
console
<!doctype html>
<html>
<head>
<title>Cat App</title>
<link rel="stylesheet" href="index.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<img src="https://thiscatdoesnotexist.com/">
<script src="index.js"></script>
</body>
</html>
Console
/index.html
-2:37