├── Book-Review-Form-main ├── README.md └── bookreview.html ├── Form-Styling-main ├── README.md ├── form.html └── style1.css ├── Form-Validation-main ├── README.md ├── index.php ├── save.php ├── style.css └── style2.css ├── Hovering-around-elements-main ├── README.md ├── myPage.html ├── sondos.jpg └── style.css ├── LICENSE ├── LogIn-popout-main ├── README.md └── popout.html ├── My-web-layout-main ├── README.md ├── myWebLayout.html └── style2.css ├── Palestine-Web-Page-main ├── README.md ├── flag.png ├── palPage.html └── style4.css ├── README.md └── Responsive-Page-main ├── README.md ├── globalWarming.html └── style3.css /Book-Review-Form-main/README.md: -------------------------------------------------------------------------------- 1 | # Book Review Form: 2 | In this page I practice using css and html forms, making a book review example 3 | 4 | # Simple book review: 5 | ![image](https://user-images.githubusercontent.com/65151701/158364325-a5772a9f-25c0-4d47-9592-47956a06c76f.png) 6 | 7 | ![image](https://user-images.githubusercontent.com/65151701/158364367-27b77445-b4e5-4287-8d89-79e091dc66d9.png) 8 | -------------------------------------------------------------------------------- /Book-Review-Form-main/bookreview.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 51 | Book review form 52 | 53 | 54 | 55 |

Form of attendance to book review

56 |

Please complete the following form to confirm your attendee:

57 | 58 |
59 | 60 |
61 | Personal information: 62 |
63 |

64 |
65 |

66 |
67 | 68 |
69 | 70 |
71 | 72 |

73 |

74 | 75 |
76 | Book: 77 |
78 | 79 | 80 |

84 | 87 |


88 | 89 |
90 | Attendance: 91 |
92 | 93 |
94 | 95 |
96 | 97 |

98 |
99 |

100 |


101 | 102 | 103 |
104 | 105 | 108 | 109 | -------------------------------------------------------------------------------- /Form-Styling-main/README.md: -------------------------------------------------------------------------------- 1 | # Form Styling: 2 | In this page I practice using forms css and html 3 | 4 | # Screenshot of the web form: 5 | ![image](https://user-images.githubusercontent.com/65151701/156574737-fe112e17-c5e2-4b1c-ad38-8521e4fcd954.png) 6 | -------------------------------------------------------------------------------- /Form-Styling-main/form.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Forms 6 | 7 | 8 |

Regestieration form

9 |
10 |
11 |
12 |
13 | 14 |
15 |
16 | 17 |
18 |




23 | 24 |
25 |
26 | 27 | 28 | -------------------------------------------------------------------------------- /Form-Styling-main/style1.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: BlueViolet; 3 | padding: 30px; 4 | } 5 | 6 | h1{ 7 | text-align: center; 8 | color: white; 9 | border-bottom: 1px solid black; 10 | border-top: 1px solid black; 11 | padding: 5px; 12 | } 13 | 14 | input[type="text"], select{ 15 | padding: 10px 5px; 16 | border-radius: 8px; 17 | margin:10px ; 18 | width: 50%; 19 | background-color: white; 20 | } 21 | 22 | label{ 23 | border-bottom: 1px dotted black; 24 | margin: 10px ; 25 | color: white; 26 | font-size: 20px; 27 | display: inline-block; 28 | } 29 | 30 | input[type="submit"]{ 31 | background-color: black; 32 | border-radius: 5px; 33 | color: white; 34 | padding: 20px; 35 | text-align: center; 36 | position: fixed; 37 | left: 20%; 38 | } 39 | 40 | input[type="submit"]:hover{ 41 | background-color:white; 42 | color: black; 43 | } -------------------------------------------------------------------------------- /Form-Validation-main/README.md: -------------------------------------------------------------------------------- 1 | # My form validation for book review: 2 | In this project I practic coding a form subminting for a book review. Then adding the answer to a database of answers using PHP, MySQL, HTML, CSS. 3 | 4 |

Form example:

5 | 6 | ![image](https://user-images.githubusercontent.com/65151701/159085633-aa0ba4af-daff-4d8e-a896-9bf6655aba49.png) 7 | 8 | ![image](https://user-images.githubusercontent.com/65151701/159085668-046fd193-763e-4ee8-a0ca-22b777b8c6d5.png) 9 | 10 | ![image](https://user-images.githubusercontent.com/65151701/159085689-7dc21cf8-b9dc-4711-a46c-915e7e8a7027.png) 11 | -------------------------------------------------------------------------------- /Form-Validation-main/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Book review form 8 | 9 |       10 | 77 | 78 |

Form of attendance to book review

79 |

Please complete the following form to confirm your attendee:

80 |
81 |
82 | Personal information: 83 |
84 |

85 |
86 |

87 |
88 | 89 |
90 | 91 |
92 | 93 |

94 |

95 | 96 |
97 | Book: 98 |
99 | 100 | 101 |

105 | 106 |


107 | 108 |
109 | Attendance: 110 |
111 | 112 |
113 | 114 |
115 | 116 |

117 |
118 |

119 |
 

120 | 121 | 122 |
123 | 124 | 125 | -------------------------------------------------------------------------------- /Form-Validation-main/save.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Welcome 4 | 5 | 6 | 7 | 12 |

13 | 14 | 15 | 16 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Form-Validation-main/style.css: -------------------------------------------------------------------------------- 1 | h2{ 2 | padding: 20px; 3 | text-align: center; 4 | } 5 | body{ 6 | background-color: beige; 7 | font-size: 18px; 8 | } 9 | h4{ 10 | padding-left: 20px; 11 | padding-right:  20px; 12 | color: darkblue; 13 | } 14 | fieldset{ 15 | padding: 15px 30px; 16 | } 17 | legend{ 18 | color: purple; 19 | } 20 | form{ 21 | padding: 50px; 22 | } 23 | #bold{ 24 | font-weight: bold; 25 | } 26 | #submit { 27 | background-color: darkblue; 28 | padding: 10px 18px; 29 | color: white; 30 | text-align: center; 31 | position: absolute; 32 | left: 50%; 33 | } 34 | -------------------------------------------------------------------------------- /Form-Validation-main/style2.css: -------------------------------------------------------------------------------- 1 | *{ 2 | padding: 20px; 3 | text-align: center; 4 | } 5 | body{ 6 | background-color: beige; 7 | font-size: 18px; 8 | } 9 | h4{ 10 | padding-left: 20px; 11 | padding-right:  20px; 12 | color: darkblue; 13 | } 14 | input { 15 | background-color: darkblue; 16 | padding: 10px 18px; 17 | color: white; 18 | text-align: center; 19 | position: block; 20 | left: 50%; 21 | margin-top: 7px; 22 | } 23 | -------------------------------------------------------------------------------- /Hovering-around-elements-main/README.md: -------------------------------------------------------------------------------- 1 | # Hovering around 2 | This html and css practice hovering around elements, i also make it responsive: 3 | 4 | # Screenshot of responsive practicing, hovering around elements: 5 | 6 | ![image](https://user-images.githubusercontent.com/65151701/156575060-d96afba1-337f-4d04-87d5-1817a5b7cf89.png) 7 | -------------------------------------------------------------------------------- /Hovering-around-elements-main/myPage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Styling 6 | 7 | 8 | 9 | 13 | 14 |
15 |
16 |
17 |

Sondos Ahmad Aabed

18 |

Computer Science Student

19 |

It's not only writers who can benefit from this free online tool. If you're a programmer who's working on a project where blocks of text are needed, this tool can be a great way to get that. It's a good way to test your programming and that the tool being created is working well.

20 | Google search
21 |
22 |
23 | 24 |
25 |
26 |

Noor Aabed

27 |

Student

28 |

Above are a few examples of how the random paragraph generator can be beneficial. The best way to see if this random paragraph picker will be useful for your intended purposes is to give it a try. Generate a number of paragraphs to see if they are beneficial to your current project.

29 |
30 |
31 |
32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /Hovering-around-elements-main/sondos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondosaabed/Basics-Web-Development-Internship/7af6fb250fd6db24cf81f80019a42dfb4d924032/Hovering-around-elements-main/sondos.jpg -------------------------------------------------------------------------------- /Hovering-around-elements-main/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | font-size: 20px; 3 | box-sizing: border-box; 4 | } 5 | 6 | body{ 7 | background: rgba(60, 100, 60, 0.3); 8 | } 9 | 10 | ul{ 11 | list-style-type: none; 12 | margin: 0; 13 | padding: 0; 14 | overflow: hidden; 15 | background-color:MediumSeaGreen; 16 | outline: 1px solid white; 17 | } 18 | 19 | li{ 20 | float: left; 21 | } 22 | 23 | li a{ 24 | display: inline-block; 25 | color: white; 26 | text-align:center; 27 | Padding: 14px 16px; 28 | text-decoration: none; 29 | } 30 | 31 | li a:hover{ 32 | background-color:tomato; 33 | } 34 | 35 | .active{ 36 | background-color: tomato; 37 | } 38 | 39 | h2,h1{ 40 | color: #fff; 41 | font-size: 28px; 42 | background-color: MediumSeaGreen; 43 | border-radius: 5px; 44 | outline: 1px solid white; 45 | margin: 20px; 46 | font-family: "Fjalla One"; 47 | } 48 | 49 | h1{ 50 | padding: 5px; 51 | } 52 | 53 | p{ 54 | text-indent: 50px; 55 | line-height: 1; 56 | color: white; 57 | margin-right: 20px; 58 | margin-left: 20px; 59 | } 60 | 61 | #p1{ 62 | font-family: "Libre Baskerville"; 63 | color: tomato; 64 | border: 2px solid ; 65 | border-radius: 5px; 66 | border-color: white; 67 | opacity: 0.5; 68 | margin-right: 20px; 69 | margin-left: 20px; 70 | } 71 | 72 | .center{ 73 | text-align: center; 74 | 75 | } 76 | 77 | p.right{ 78 | text-align: right; 79 | } 80 | 81 | .box{ 82 | float: left; 83 | width:50%; 84 | padding: 10px; 85 | height: 360px; 86 | } 87 | 88 | .clearfix::after{ 89 | content: ""; 90 | clear: both; 91 | } 92 | 93 | div:hover{ 94 | background-color: tomato; 95 | } 96 | 97 | div a:link{ 98 | color: white; 99 | padding-left: 25px; 100 | } 101 | 102 | div a:visited{ 103 | color: tomato; 104 | } 105 | 106 | div a:hover{ 107 | color: MediumSeaGreen; 108 | } 109 | 110 | div a:active{ 111 | color: blue; 112 | } 113 | 114 | ::selection{ 115 | background: yellow; 116 | color: black; 117 | } 118 | 119 | img{ 120 | border-radius: 50%; 121 | opacity: 0.5; 122 | padding-left: 110px; 123 | padding-top: 20px; 124 | width:320px; 125 | height:240px; 126 | } 127 | 128 | img:hover{ 129 | opacity:1.0; 130 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Sondos Ahmad Aabed 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /LogIn-popout-main/README.md: -------------------------------------------------------------------------------- 1 | # Login popout 2 | In this repository I practice Javascript, html, css and make a popout screen that enables the user to login. 3 | 4 | # Screenshots: 5 | ![image](https://user-images.githubusercontent.com/65151701/156576010-779a9572-31ad-4fa2-ab2d-37f4a77728ca.png) 6 | 7 | ![image](https://user-images.githubusercontent.com/65151701/156576043-11df39e4-037e-4d10-869f-83905c47945b.png) 8 | -------------------------------------------------------------------------------- /LogIn-popout-main/popout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 62 | popout 63 | 64 | 65 | 66 |

Click to log in

67 | 68 | 69 |
70 |
71 |

Log in

72 |
73 | 77 | 78 | 82 |

83 | 84 |
85 |
86 | 87 | 88 | 101 | 102 | -------------------------------------------------------------------------------- /My-web-layout-main/README.md: -------------------------------------------------------------------------------- 1 | # My website layout 2 | In this page I practice websites layouts 3 | 4 | # Screenshot of my website 5 | ![image](https://user-images.githubusercontent.com/65151701/156574210-661aff51-8c96-41f7-b375-2877e1e09d36.png) 6 | ![image](https://user-images.githubusercontent.com/65151701/156574273-1a87465e-1065-4622-aa78-fadf4e77bf08.png) 7 | -------------------------------------------------------------------------------- /My-web-layout-main/myWebLayout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | My website 6 | 7 | 8 |
9 |

My website

10 |

This website to practice html and css

11 |
12 | 13 | 18 | 19 |
20 |
21 |
22 |
23 |

About this website

24 | about this web 25 |
26 |

This paragraph is about this website

27 |
Image
28 | 31 |

Text

32 |

Pollution is the burning problem of today. But not much attention is paid to noise pollution. The noise from vehicles, machines and loud

33 |
34 |
35 |

How we work

36 |

This is a paragraph about how we work

37 |
Image
38 |

speakers is deafening. People have to speak loudly to be heard. All this causes tension and lot of diseases. Government should take steps to control noise pollution.

39 |
40 |
41 | 42 |
43 |
44 |

About the author

45 |
Image
46 |

This is a paragraph about the author of this text

47 |
48 |
49 |

Most asked

50 |
question1
51 |
52 |
53 |

Follow us

54 |

For more

55 | 56 |
57 |
58 |
59 | 60 | 63 | 64 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /My-web-layout-main/style2.css: -------------------------------------------------------------------------------- 1 | @font-face{ 2 | font-family: sondos; 3 | /*font-src: url(arial);*/ 4 | font-weight: bold; 5 | } 6 | 7 | *{ 8 | box-sizing: border-box; 9 | font-family: sondos; 10 | } 11 | 12 | body{ 13 | padding: 10px; 14 | background: #DED6D1; 15 | } 16 | 17 | .header{ 18 | padding: 30px; 19 | text-align: center; 20 | background-color: white; 21 | /*linear-gradient( #EEC6CA, white);*/ 22 | } 23 | 24 | .nav{ 25 | overflow: hidden; 26 | background-color: #CDE5D7; 27 | } 28 | 29 | .nav a{ 30 | float: left; 31 | display: block; 32 | padding: 14px 16px; 33 | color: black; 34 | text-decoration: none; 35 | font-size: 18px; 36 | text-align: center; 37 | width: 30%; 38 | } 39 | 40 | .nav a:hover{ 41 | background-color: black; 42 | color: white; 43 | } 44 | 45 | .card{ 46 | margin-top: 20px; 47 | background-color: white; 48 | padding: 20px; 49 | } 50 | 51 | .card:hover{ 52 | box-shadow: 7px 7px; 53 | } 54 | 55 | .row:after{ 56 | content:""; 57 | display: table; 58 | clear: both; 59 | } 60 | 61 | .footer{ 62 | padding: 20px; 63 | text-align: center; 64 | margin-top: 20px; 65 | background: lightgrey; 66 | } 67 | 68 | .leftcolmn{ 69 | float: left; 70 | padding-left: 14px; 71 | } 72 | 73 | .imgbox{ 74 | background-color: #EEC6CA; 75 | padding:20px; 76 | width: 300px; 77 | height: 200px; 78 | border-radius: 8px; 79 | transition-delay: 1s; 80 | transition: width 2s, height 3s; 81 | } 82 | 83 | .imgbox:hover{ 84 | width: 350px; 85 | height: 250px; 86 | opacity: 0.7; 87 | } 88 | 89 | .modal{ 90 | display: none; 91 | position: fixed; 92 | z-index: 1; 93 | padding-top: 100px; 94 | left: 0; 95 | top: 0; 96 | width: 100%; 97 | height: 100%; 98 | overflow:auto; 99 | background-color: rgba(0,0,0,0.9); 100 | } 101 | 102 | .modal-content{ 103 | margin: auto; 104 | display: block; 105 | width: 80%; 106 | max-width: 700px; 107 | animation-name: zoom; 108 | animation-duration: 0.6s; 109 | } 110 | 111 | @keyframes zoom{ 112 | from {transform: scale(0.1)} 113 | to{transform: scale(1)} 114 | } 115 | 116 | .rightcolmn{ 117 | float: left; 118 | padding-left: 20px; 119 | } 120 | 121 | .tooltip{ 122 | position: relative; 123 | display: inline-block; 124 | } 125 | 126 | .tooltip .tooltiptext{ 127 | visibility: hidden; 128 | width: 120px; 129 | background-color: grey; 130 | color: white; 131 | text-align: center; 132 | padding: 10px 0; 133 | border-radius: 5px; 134 | 135 | position: absolute; 136 | top: -5px; 137 | left: 100%; 138 | z-index:1; 139 | opacity: 0; 140 | transition: opacity 1s; 141 | } 142 | 143 | .tooltip:hover .tooltiptext{ 144 | visibility: visible; 145 | opacity: 1; 146 | } 147 | 148 | button{ 149 | background-color: #EEC6CA; 150 | border-radius: 7px; 151 | text-align: center; 152 | padding: 10px 10px; 153 | color: black; 154 | font-size: 18px; 155 | transition-duration: 0.3s; 156 | 157 | position: relative; 158 | left:40%; 159 | right: 70%; 160 | } 161 | 162 | button:hover{ 163 | background-color: #DED6D1; 164 | color: black; 165 | } -------------------------------------------------------------------------------- /Palestine-Web-Page-main/README.md: -------------------------------------------------------------------------------- 1 | # Palestine 2 | Practicing html and css doing webpage about Palestine, including the responsive property: 3 | 4 |

Screenshot of Website:

5 | 6 | ![image](https://user-images.githubusercontent.com/65151701/156573162-cb6410e4-ef9e-48bf-be98-245c6be7cc3c.png) 7 | -------------------------------------------------------------------------------- /Palestine-Web-Page-main/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondosaabed/Basics-Web-Development-Internship/7af6fb250fd6db24cf81f80019a42dfb4d924032/Palestine-Web-Page-main/flag.png -------------------------------------------------------------------------------- /Palestine-Web-Page-main/palPage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Responsive 7 | 8 | 9 |
10 |

Palestine

11 |
12 | 13 |
14 | 23 | 24 |
25 |

The name

26 |

The word Palestine derives from Philistia, the name given by Greek writers to the land of the Philistines, who in the 12th century bce occupied a small pocket of land on the southern coast, Yafa and Gaza.

27 | 28 |
29 | 30 |
31 |
32 |

What?

33 |

Palestine is a country in Asia


34 |

Where?

35 |

Beside the Mediterranean Sea.


36 |

How?

37 |

You can't reach Palestine by airport.


38 |
39 |
40 |
41 | 42 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Palestine-Web-Page-main/style4.css: -------------------------------------------------------------------------------- 1 | :root{ 2 | --c1: #F4F1DE; 3 | --c2: #E07A5F; 4 | --c3: #3D405B; 5 | --c4: #81B29A; 6 | --c5: #F2CC8F; 7 | --w: white; 8 | } 9 | 10 | *{ 11 | box-sizing: border-box; 12 | } 13 | 14 | body{ 15 | background-color: var(--c1); 16 | } 17 | 18 | .row::after{ 19 | content:""; 20 | clear: both; 21 | display: block; 22 | } 23 | 24 | [class*="col-"]{ 25 | display: block; 26 | float: left; 27 | padding: 15px; 28 | } 29 | 30 | .header{ 31 | background-color: var(--w); 32 | padding: 5px 0; 33 | color: var(--c3); 34 | text-align: center; 35 | } 36 | 37 | .menu ul{ 38 | list-style-type: none; 39 | margin: 0; 40 | padding: 0; 41 | } 42 | 43 | .menu li{ 44 | padding: 15px; 45 | background-color: var(--c2); 46 | color: var(--w); 47 | margin-bottom: 5px; 48 | margin-top: 5px; 49 | } 50 | 51 | .menu li:hover{ 52 | box-shadow: 2px 2px var(--c3),2px 2px var(--c3); 53 | opacity: 0.7; 54 | } 55 | 56 | .pp{ 57 | background-color: var(--w); 58 | padding: 20px; 59 | color: var(--c3); 60 | margin-top: 20px; 61 | margin-bottom: 20px; 62 | } 63 | 64 | .pp h1{ 65 | text-align: center; 66 | } 67 | 68 | .aside{ 69 | background-color: var(--c2); 70 | color: var(--w); 71 | padding: 15px; 72 | text-align: center; 73 | margin: 0; 74 | } 75 | 76 | .footer{ 77 | background-color: var(--c5); 78 | padding: 3px 0; 79 | color: var(--c3); 80 | text-align: center; 81 | margin-top: 20px; 82 | } 83 | 84 | img{ 85 | width: 100%; 86 | height: auto; 87 | padding: 15px; 88 | display: block; 89 | margin: auto; 90 | } 91 | 92 | .right{ 93 | float: right; 94 | } 95 | 96 | [class*="col-"]{ 97 | /*for mobiles*/ 98 | width: 100%; 99 | } 100 | 101 | @media only screen and (min-width: 600px) { 102 | /*for tablest*/ 103 | .col-s-1 {width: 8.33%;} 104 | .col-s-2 {width: 16.66%;} 105 | .col-s-3 {width: 25%;} 106 | .col-s-4 {width: 33.33%;} 107 | .col-s-5 {width: 41.66%;} 108 | .col-s-6 {width: 50%;} 109 | .col-s-7 {width: 58.33%;} 110 | .col-s-8 {width: 66.66%;} 111 | .col-s-9 {width: 75%;} 112 | .col-s-10 {width: 83.33%;} 113 | .col-s-11 {width: 91.66%;} 114 | .col-s-12 {width: 100%;} 115 | 116 | img{ 117 | height: 200px; 118 | width: 500px; 119 | } 120 | } 121 | 122 | @media only screen and (min-width: 760px){ 123 | /* for descktops*/ 124 | .col-1 {width: 8.33%;} 125 | .col-2 {width: 16.66%;} 126 | .col-3 {width: 25%;} 127 | .col-4 {width: 33.33%;} 128 | .col-5 {width: 41.66%;} 129 | .col-6 {width: 50%;} 130 | .col-7 {width: 58.33%;} 131 | .col-8 {width: 66.66%;} 132 | .col-9 {width: 75%;} 133 | .col-10 {width: 83.33%;} 134 | .col-11 {width: 91.66%;} 135 | .col-12 {width: 100%;} 136 | 137 | img{ 138 | height: 300px; 139 | width: 700px; 140 | } 141 | } 142 | 143 | 144 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Basics of Web Development Internship:

2 |

In August-September of 2021, during my early year at university, I completed a web development basics internship at Immesense Interactive Solutions. Throughout the internship, I gained a very good understanding of HTML and CSS3, and began to learn server-side PHP.

3 | 4 |

As part of my internship, I created several pages which I have gathered in this repository. These projects include:

5 | 6 | 30 | -------------------------------------------------------------------------------- /Responsive-Page-main/README.md: -------------------------------------------------------------------------------- 1 | # Responsive page: 2 | On this page I practice responsive websites developing in coulmns using media query 3 | 4 | # CSS & HTML 5 | 6 | ![image](https://user-images.githubusercontent.com/65151701/158364932-b0ea3c75-28ec-47ae-bf44-7023e7f7ab21.png) 7 | 8 | responsive media query: 9 | 10 | ![image](https://user-images.githubusercontent.com/65151701/158364990-364651cb-ee18-4fda-a188-3564dbf1d9b4.png) 11 | -------------------------------------------------------------------------------- /Responsive-Page-main/globalWarming.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Global Warming 7 | 8 | 9 |
10 |

What is global warming, explained

11 |
12 | Glaciers are melting, sea levels are rising, cloud forests are dying, and wildlife is scrambling to keep pace. It has become clear that humans have caused most of the past century's warming by releasing heat-trapping gases as we power our modern lives. Called greenhouse gases, their levels are higher now than at any time in the last 800,000 years. 13 | 14 | We often call the result global warming, but it is causing a set of changes to the Earth's climate, or long-term weather patterns, that varies from place to place. While many people think of global warming and climate change as synonyms, scientists use “climate change” when describing the complex shifts now affecting our planet’s weather and climate systems—in part because some areas actually get cooler in the short term. 15 | 16 | Climate change encompasses not only rising average temperatures but also extreme weather events, shifting wildlife populations and habitats, rising seas, and a range of other impacts. All of those changes are emerging as humans continue to add heat-trapping greenhouse gases to the atmosphere, changing the rhythms of climate that all living things have come to rely on. 17 | 18 | What will we do—what can we do—to slow this human-caused warming? How will we cope with the changes we've already set into motion? While we struggle to figure it all out, the fate of the Earth as we know it—coasts, forests, farms, and snow-capped mountains—hangs in the balance. 19 | 20 | What will we do—what can we do—to slow this human-caused warming? How will we cope with the changes we've already set into motion? While we struggle to figure it all out, the fate of the Earth as we know it—coasts, forests, farms, and snow-capped mountains—hangs in the balance. 21 |
22 |
23 | 24 |
25 |

Understanding the greenhouse effect

26 |
27 | The "greenhouse effect" is the warming that happens when certain gases in Earth's atmosphere trap heat. These gases let in light but keep heat from escaping, like the glass walls of a greenhouse, hence the name. 28 | 29 | Sunlight shines onto the Earth's surface, where the energy is absorbed and then radiate back into the atmosphere as heat. In the atmosphere, greenhouse gas molecules trap some of the heat, and the rest escapes into space. The more greenhouse gases concentrate in the atmosphere, the more heat gets locked up in the molecules. 30 | 31 | Scientists have known about the greenhouse effect since 1824, when Joseph Fourier calculated that the Earth would be much colder if it had no atmosphere. This natural greenhouse effect is what keeps the Earth's climate livable. Without it, the Earth's surface would be an average of about 60 degrees Fahrenheit (33 degrees Celsius) cooler. 32 |
33 |
34 | 35 | 36 | -------------------------------------------------------------------------------- /Responsive-Page-main/style3.css: -------------------------------------------------------------------------------- 1 | :root{ 2 | --c1:#E7F2F8; 3 | --c2:#74BDCB; 4 | --c3:#FFA384; 5 | --c4:#EFE7BC; 6 | } 7 | 8 | .newpaper{ 9 | resize: vertical; 10 | overflow: auto; 11 | column-count: 3; 12 | column-gap: 40px; 13 | column-rule: 1px solid var(--c3); 14 | outline-offset: 10px; 15 | padding: 7px; 16 | } 17 | 18 | body{ 19 | background-color: var(--c1); 20 | color: var(--c2); 21 | } 22 | 23 | .card{ 24 | background-color: white; 25 | padding: 10px; 26 | } 27 | 28 | h1{ 29 | column-span:all; 30 | color: var(--c3); 31 | } 32 | 33 | @media screen and (max-width: 992px){ 34 | body{ 35 | background-color: var(--c4); 36 | } 37 | 38 | .newpaper { 39 | column-count: 2; 40 | } 41 | } --------------------------------------------------------------------------------