challenge7-webdev-withjs

public
tiara Feb 15, 2026 Never 64
Clone
HTML challenge7-webdev-html 12 lines (8 loc) | 143 Bytes
1
<!DOCTYPE html>
2
<html>
3
4
<head>
5
<link rel="stylesheet" type="text/css" href="style.css"/>
6
</head>
7
8
<body>
9
10
</body>
11
12
</html>
CSS challenge7-webdev-css 14 lines (12 loc) | 211 Bytes
1
* {
2
background-color: white;
3
font-family:Verdana, Geneva, Tahoma, sans-serif;
4
margin: 10px;
5
padding: 10px;
6
}
7
8
table {
9
border-collapse: collapse;
10
}
11
12
th, td {
13
border: 1px solid #ddd;
14
}
JavaScript challenge7-webdev-js 1 lines (1 loc) | 63 Bytes
1
document.getElementById("demo").innerHTML = "Hello JavaScript";