html syntax

Solutions on MaxInterview for html syntax by the best coders in the world

showing results for - "html syntax"
Mia
29 Jan 2019
1<!DOCTYPE html>
2<html lang="en">
3<head>
4    <meta charset="UTF-8">
5    <meta name="viewport" content="width=device-width, initial-scale=1.0">
6    <title>HTML Syntax</title>
7    <link rel="stylesheet" href="style.css">
8    <script src="script.js"></script>
9</head>
10<body>
11    <p>paragraph</p>
12    <img src="img/myimage/png" alt="My Image">
13    <a href="https://link.com">The Link</a>
14</body>
15</html>
Philippe
11 Jan 2017
1<p>My cat is very grumpy</p>