challenge11-webdev

public
tiara Mar 16, 2026 Never 69
Clone
CSS challenge11-webdev-css 14 lines (12 loc) | 213 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
}
HTML challenge11-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>
JavaScript challenge11-webdev-js 1 lines (1 loc) | 63 Bytes
1
document.getElementById("demo").innerHTML = "Hello JavaScript";