<!DOCTYPE html>

<head>
<title>Anna's webpage</title>
<link rel="stylesheet" href="./css/style.css">
<style>
.square {
height: 150px;
width: 300px;
background-color: #ab5c5c;
}
</style>
</head>

<body style="background-color:rgb(248, 229, 231);">
<header>
<h1>Anna's webpage</h1>
</header>
<meta name="viewport" content="width=device-width, initial-scale=1">
<hr>
<nav>
<div id = "nav_btns">
<div class = "nav_btn">
<a href = "pagelink.html" >Naver</a>
</div>
<div class = "nav_btn">
<a href = "https://www.homeworkmania.codes/" >Secret page for you</a>
</div>
</div>
</nav>
<hr>
<div class = "square_view">
<div class = "square"></div>
<canvas id="myCanvas"></canvas>
</div>

<script>
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");
ctx.fillStyle = "pink";
ctx.fillRect(0,0, 300,150);
</script>
<body>
<p>
우주 탐사는 인류의 가장 큰 도전 중 하나입니다.
<br> 과학자들은 새로운 행성과 은하를 탐구하며 우주의 비밀을 밝혀내고 있습니다.
<br> 이러한 노력은 우리에게 우주의 기원과 생명체의 가능성에 대한 실마리를 제공합니다.
<br> 동시에 우주 개발은 첨단 기술 발전과 경제적 기회를 창출하기도 합니다.
<br> 결국, 우주는 인간의 호기심과 도전 정신을 가장 잘 보여주는 무대라 할 수 있습니다.
</p>
</body>
<hr>
<footer>
Annnna's webpage all rights reserved <br>
</footer>
</body>