Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
gormonn authored Aug 23, 2023
1 parent 4c22d9c commit 0e4de17
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Dmitrii Chernikho</title>
</head>
<body>
<div id="readme-content"></div>
<script>
fetch('https://raw.githubusercontent.com/gormonn/gormonn/main/README.md')
.then(response => response.text())
.then(text => {
// Вставьте содержимое README.md в элемент с id "readme-content"
document.getElementById('readme-content').innerHTML = text;
})
.catch(error => {
console.error('Failed to load README.md:', error);
});
</script>
</body>
</html>

0 comments on commit 0e4de17

Please sign in to comment.