├── README.md
├── yes.html
├── style.css
└── index.html
/README.md:
--------------------------------------------------------------------------------
1 | # Ask-For-Valentine-Day
--------------------------------------------------------------------------------
/yes.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |

13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/style.css:
--------------------------------------------------------------------------------
1 | body {
2 | display: flex;
3 | justify-content: center;
4 | align-items: center;
5 | height: 100vh;
6 |
7 | background-color: #ffffffe2;
8 | }
9 |
10 | .header_text {
11 | font-family: "Nunito";
12 | font-size: 50px;
13 | font-weight: bold;
14 |
15 | text-align: center;
16 | margin-top: 20px;
17 | margin-bottom: 20px;
18 | text-shadow: 0 0 5px rgb(255, 255, 255);
19 | color: #000000;
20 | }
21 |
22 | .text {
23 | font-family: "Nunito";
24 | font-size: 25px;
25 | font-weight: bold;
26 | color: rgb(181, 42, 42);
27 | text-align: center;
28 | margin-top: 20px;
29 | margin-bottom: 0px;
30 | }
31 |
32 | .gif_container {
33 | display: flex;
34 | justify-content: center;
35 | align-items: center;
36 | }
37 | p {
38 | color: white;
39 | margin-left: 50%;
40 | }
41 | p a {
42 | color: rgb(255, 255, 255);
43 | font-size: 20px;
44 | font-weight: 600;
45 | opacity: 0.25;
46 | }
47 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Do you love me?
6 |
10 |
67 |
68 |
69 |
74 |
Will You Be My Valentine?
75 |

79 |
89 |
90 |
100 |
101 |
109 |
110 |
111 |
112 | Made by UntoldCoding
113 |
114 |
115 |
169 |
170 |
171 |
--------------------------------------------------------------------------------