├── .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 | Hey dear 17 | 18 | 19 | 20 |
21 |
22 |
23 |
24 |
25 | 26 |

Will you marry me !!!

27 |
28 |
29 | 30 | 31 | 34 |
35 |
36 |
37 | 38 | 39 | 44 | 45 | 46 | 47 | --------------------------------------------------------------------------------