22 lines
417 B
HTML
22 lines
417 B
HTML
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<link rel='stylesheet' href='style.css'>
|
||
|
|
<style>
|
||
|
|
@font-face {
|
||
|
|
font-family: 'font';
|
||
|
|
src: url('font.woff2') format('woff2');
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
font-family: 'font';
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script src='script.js'></script>
|
||
|
|
<script>fetch('/api/endpoint')</script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>Network Tab Test</h1>
|
||
|
|
<img src="image.png" >
|
||
|
|
</body>
|
||
|
|
</html>
|