<div class="card">
<img class="top-img" src="img\fon.png" width="480" height="180" />
<h2>Базовый HTML</h2>
<ul>
<li>Базовые теги</li>
<li>Теги картинок и ссылок</li>
<li>Теги таблиц</li>
<li>Служебные теги</li>
<li>Кодстайл HTML</li>
<p class="some-text">02</p>
</ul>
</div>
.card {
background-color: white;
width: 480px;
height: 500px;
box-shadow: 2px 4px 9px -4px #000000;
position: relative;
}
.some-text {
position: absolute;
right: 0;
bottom: 0;
}
<body>
<input type="text" name="#" id="input" placeholder="Какой то текст">
<button id="btn">Кнопка</button>
<script src="app.js"></script>
</body>
let input = document.getElementById("input");
let btn = document.getElementById("btn");
btn.addEventListener('click', () => {
input.placeholder='Уже другой текст';
})