diff --git a/1-html-css/homework1/global.css b/1-html-css/homework1/global.css new file mode 100644 index 0000000..28e1a16 --- /dev/null +++ b/1-html-css/homework1/global.css @@ -0,0 +1,7 @@ +.bold { + font-weight: bold; +} + +.italic { + font-style: italic; +} \ No newline at end of file diff --git a/1-html-css/homework1/index.html b/1-html-css/homework1/index.html new file mode 100644 index 0000000..b96e93e --- /dev/null +++ b/1-html-css/homework1/index.html @@ -0,0 +1,46 @@ + + + + + + + + + + Code lessons + + + +
Отзывы
+

Code Lessons

+ +

First HTML + CSS

+

+ 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 (CSS) 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. +

+
+

Second JavaScript

+

+ JavaScript, 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. All major web browsers 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 +

+
+

Third TypeScript

+

+ TypeScript adds additional syntax to JavaScript to support a tighter integration with your editor. Catch errors early in your editor. TypeScript code converts to JavaScript, which runs anywhere 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. +

+
+
+ +
+ + + \ No newline at end of file diff --git a/1-html-css/homework1/style.css b/1-html-css/homework1/style.css new file mode 100644 index 0000000..5b961e3 --- /dev/null +++ b/1-html-css/homework1/style.css @@ -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; +} \ No newline at end of file