└── Singalore Airlines_files ├── Singalore Airlines.html ├── images.jpg └── style.css /Singalore Airlines_files/Singalore Airlines.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Singalore Airlines 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 |
15 |
16 |
17 | 18 | 60 | 61 | 62 |

Look out for our special discount schemes

63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 | 79 | 80 | 81 | 82 | 110 |
111 |
112 |
113 | 170 | 171 | 172 | 173 | 174 | -------------------------------------------------------------------------------- /Singalore Airlines_files/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubasriSubasriS/web-project/74b4f01f0adf2e536fdba3ef840f2573bb1d6ff4/Singalore Airlines_files/images.jpg -------------------------------------------------------------------------------- /Singalore Airlines_files/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin:0; 3 | padding:0; 4 | box-sizing: border-box; 5 | } 6 | .container{ 7 | max-width: 1170px; 8 | margin:auto; 9 | } 10 | 11 | .footer{ 12 | background-color: rgb(178, 172, 172); 13 | padding: 25px; 14 | margin-bottom:0cqmin; 15 | } 16 | .row{ 17 | display:flex; 18 | flex-wrap: wrap; 19 | } 20 | .footer-col{ 21 | width:25%; 22 | padding:15px; 23 | } 24 | .footer-col h2{ 25 | font-size: 18px; 26 | text-transform: capitalize; 27 | margin-bottom: 35px; 28 | font-weight: 500; 29 | position: relative; 30 | } 31 | .footer-col h2::before{ 32 | content:''; 33 | position:absolute; 34 | left:0; 35 | bottom: -10px; 36 | background-color:rgb(250, 250, 255); 37 | height:2px; 38 | box-sizing: border-box; 39 | width: 50px; 40 | 41 | } 42 | .footer-col a :not(:last-child){ 43 | margin: bottom 10px; 44 | } 45 | .modal-body { 46 | background-color: rgb(191, 174, 234); 47 | height: 350px; 48 | margin-left: 350px; 49 | margin-right: 350px; 50 | 51 | } 52 | h3{ 53 | color: red; 54 | } 55 | button{ 56 | background-color:#d8ff2b; 57 | } 58 | h4{ 59 | color:blue 60 | } 61 | script{ 62 | inline-size: none; 63 | } 64 | 65 | --------------------------------------------------------------------------------