16 lines
414 B
HTML
16 lines
414 B
HTML
<!DOCTYPE html>
|
|
|
|
<!-- Demonstrates Open Graph tags -->
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta property="og:title" content="CS50">
|
|
<meta property="og:description" content="Introduction to the intellectual enterprises of computer science and the art of programming.">
|
|
<meta property="og:image" content="cat.jpg">
|
|
<title>meta</title>
|
|
</head>
|
|
<body>
|
|
...
|
|
</body>
|
|
</html>
|