-
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.
- Loading branch information
Showing
3 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,41 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
<meta charset="utf-8"> | ||
<title>lesson06</title> | ||
</head> | ||
<body> | ||
<header> | ||
<nav class="navbar"> | ||
<ul class="navbar-ul"> | ||
<li> | ||
<a href="#">მთავარი</a> | ||
</li> | ||
<li> | ||
<a href="#">სიახლეები</a> | ||
</li> | ||
<li> | ||
<a href="#">კონტაქტი</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<section> | ||
<div> | ||
<h5>HTML</h5> | ||
<img src="images/html-css.jpeg" alt="html css"> | ||
<p> | ||
The HyperText Markup Language, or HTML is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript | ||
</p> | ||
</div> | ||
<div> | ||
<h5>CSS</h5> | ||
<img src="images/html-css.jpeg" alt="html css"> | ||
<p> | ||
Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language such as HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript. | ||
</p> | ||
</div> | ||
</section> | ||
</body> | ||
</html> |
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,11 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
a{ | ||
text-decoration: none; | ||
} | ||
ul { | ||
list-style: none; | ||
} |