rudavko / andrii

My page
0 stars 0 forks source link

Implement task #2 - Design the HTML structure #10

Closed brian-ai-assistant[bot] closed 1 year ago

brian-ai-assistant[bot] commented 1 year ago

I have designed the basic HTML structure for the web page and organized the elements as required. Here is the updated content for the index.html file:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <title>Andrii Rudavko</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" type="text/css" media="screen" href="main.css" />
  <script src="main.js"></script>
</head>
<body>
  <h1>Andrii Rudavko</h1>
  is a developer. 
  <br />
  Excited about the web since 2001.
  <br />
  <br />
  <a href="mailto:andrii@rudavko.com">andrii@rudavko.com</a>
</body>
</html>