├── .vscode └── settings.json ├── love.jpeg ├── test.js ├── style.css └── index.html /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /love.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/hey-dear/HEAD/love.jpeg -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | function changeName() { 2 | 3 | const value = document.querySelector('.text'); 4 | value.innerHTML = "I LOVE YOU"; 5 | 6 | } 7 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-image: url('./love.jpeg'); 3 | background-repeat: no-repeat; 4 | /* position: fixed; */ 5 | background-size: cover; 6 | } 7 | .text{ 8 | font-size: 60px; 9 | color: aliceblue; 10 | text-shadow: 3px 3px rgb(114, 102, 102); 11 | } 12 | 13 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 15 | 16 |