-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added the webpage from the last lesson
- Loading branch information
0 parents
commit 8db3c60
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<html> | ||
<!-- | ||
זה דף אינטרנט רגיל עם כותרת ופסקאות | ||
הוא מורכב מתגיות שונות | ||
--> | ||
|
||
<body style="background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);padding: 2rem; direction: rtl;"> | ||
|
||
<!-- | ||
למשל | ||
h1 | ||
הוא כותרת ראשית | ||
--> | ||
<h1> | ||
דף אינטרנט | ||
</h1> | ||
|
||
בדף אינטרנט יכולים להיות כל מני דברים | ||
|
||
<p style="color: black;"> | ||
כמו פסקאות | ||
</p> | ||
<button> | ||
כפתור כלשהו | ||
</button> | ||
<p> | ||
וכמובן תמונות | ||
</p> | ||
<img src="https://www.w3schools.com/html/pic_trulli.jpg"> | ||
|
||
</body> | ||
|
||
</html> |