Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.DS_Store
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@
Список студентів, які виконали завдання:

* Петренко Петро Петрович, група ІПЗ-24-1
* Поплавська Анастасія Андріївна, група ЗІПЗ-24-1
* e-mail: zipz241_paa@student.ztu.edu.ua

6 changes: 3 additions & 3 deletions jsdemo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
<body>
<div class="panel" id="one">
<div class="header">
<div class="title">Title</div>
<div class="title">Title 1</div>
</div>
</div>
<div class="panel">
<div class="header">
<div class="title">Title</div>
<div class="title">Title 2</div>
</div>
</div>
<div class="panel">
<div class="header">
<div class="title">Title</div>
<div class="title">Title 3</div>
</div>
</div>
</body>
Expand Down
Binary file added zipz241_paa/images/AI.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added zipz241_paa/images/Iphone.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added zipz241_paa/images/spacex.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions zipz241_paa/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tech News - Second Branch</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Tech News</h1>
<div class="news">
<img src="images/AI.jpeg" alt="AI">
<h2>OpenAI Introduces a New AI Model</h2>
<p>Компанія OpenAI представила нову модель штучного інтелекту з покращеними можливостями.</p>
</div>
<div class="news">
<img src="images/iPhone.jpeg" alt="iPhone">
<h2>Apple Introduces the New iPhone 17</h2>
<p>Новий смартфон отримав покращену камеру та продуктивність.</p>
</div>
<div class="news">
<img src="images/SpaceX.webp" alt="SpaceX">
<h2>SpaceX Successfully Launches a Rocket</h2>
<p>Компанія SpaceX виконала черговий успішний запуск ракети Falcon 9.</p>
</div>
</body>
</html>
16 changes: 16 additions & 0 deletions zipz241_paa/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
body {
background-color: #d4d1d1;
font-family: Arial, sans-serif;
margin: 20px;
}

.news {
border: 3px solid #000000;
border-radius: 10px;
padding: 15px;
margin-bottom: 20px;
}

.news img {
width: 300px;
}