Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/project.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 22 additions & 4 deletions my.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
<!doctype html>
<title>Welcome to Git!</title>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>

<h1>Решение первой задачи</h1>
function sum1(a, b){
return a + b;
}
console.log(sum1(1,1));

function sum2(c, d){
return c + d;
}
console.log(sum2(2,5));
</body>
</html>




<p>Let's have some fun!</p>

<p>New changes!</p>

24 changes: 24 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>

<h1> Решение первой задачи</h1>
function sum1(a, b){
return a + b;
}
console.log(sum1(1,1));

function sum2(c, d){
return c + d;
}
console.log(sum2(2,5));

<h2> Решение первой задачи</h2>
</body>
</html>