mirror of
https://github.com/TronoSfera/Homework.git
synced 2026-05-18 10:03:43 +03:00
Merge 0b0f914135 into 1e434ad392
This commit is contained in:
commit
c3cc7eaf89
3 changed files with 80 additions and 0 deletions
7
1-html-css/homework1/global.css
Normal file
7
1-html-css/homework1/global.css
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.italic {
|
||||
font-style: italic;
|
||||
}
|
||||
46
1-html-css/homework1/index.html
Normal file
46
1-html-css/homework1/index.html
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="global.css" />
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
<title>Code lessons</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="Header"><a href="#">Отзывы</a></div>
|
||||
<h1>Code Lessons</h1>
|
||||
<ul>
|
||||
<li>HTML + CSS</li>
|
||||
<li>JavaScript</li>
|
||||
<li>TypeScript</li>
|
||||
</ul>
|
||||
<h2>First HTML + CSS</h2>
|
||||
<p>
|
||||
<span class="bold">HyperText Markup Language</span> 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
|
||||
<span class="bold">Cascading Style Sheets (CSS)</span> and scripting languages such as JavaScript. Web browsers receive HTML documents from a web server or from local storage and render the documents into multimedia web pages. HTML describes the
|
||||
structure of a web page semantically and originally included cues for the appearance of the document. HTML elements are the building blocks of HTML pages. With HTML constructs, images and other objects such as interactive forms may be embedded
|
||||
into the rendered page.
|
||||
</p>
|
||||
<hr />
|
||||
<h2>Second JavaScript</h2>
|
||||
<p>
|
||||
<span class="bold">JavaScript</span>, often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage
|
||||
behavior, often incorporating third-party libraries. <span class="italic">All major web browsers</span> have a dedicated JavaScript engine to execute the code on users' devices. JavaScript is a high-level, often just-in-time compiled language
|
||||
that conforms to the ECMAScript
|
||||
</p>
|
||||
<hr />
|
||||
<h2>Third TypeScript</h2>
|
||||
<p>
|
||||
<span class="bold">TypeScript</span> adds additional syntax to JavaScript to support a tighter integration with your editor. Catch errors early in your editor. TypeScript code converts to JavaScript, <span class="italic">which runs anywhere</span> JavaScript runs: In a browser, on Node.js or Deno and in your apps. TypeScript understands JavaScript and uses type inference to give you great tooling without additional code.
|
||||
</p>
|
||||
<hr />
|
||||
<div>
|
||||
<p class="footer">© All rights reserved. 2023</p>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
27
1-html-css/homework1/style.css
Normal file
27
1-html-css/homework1/style.css
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
.footer {
|
||||
text-align: center;
|
||||
color: #777;
|
||||
}
|
||||
|
||||
p {
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
a,
|
||||
a:link {
|
||||
color: blue;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: blueviolet;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a:active,
|
||||
a:focus {
|
||||
color: orangered;
|
||||
}
|
||||
Loading…
Reference in a new issue