23 lines
504 B
HTML
23 lines
504 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<title>My New Website</title>
|
|
</head>
|
|
<body>
|
|
<h1>My New Website</h1>
|
|
<div class="h-card">
|
|
<p>
|
|
Hi, my name is <span class="p-name">Jane Smith</span> and I am a human on the Internet.
|
|
</p>
|
|
|
|
<p>
|
|
You can find me on other websites below:
|
|
</p>
|
|
|
|
<ul>
|
|
<li><a href="https://twitter.com/_mytwitterid_" rel="me">@_mytwitterid_</a></li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|