Skip to content

Commit

Permalink
add main content
Browse files Browse the repository at this point in the history
  • Loading branch information
NokaK committed Sep 20, 2021
1 parent ebb694e commit 76917f2
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
Binary file added images/html-css.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions index.html
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>
11 changes: 11 additions & 0 deletions style.css
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;
}

0 comments on commit 76917f2

Please sign in to comment.