├── README.md ├── style.css ├── LICENSE └── index.html /README.md: -------------------------------------------------------------------------------- 1 | This is a simple html and css table created for all contributors. 2 | You should please just copy from where the instruction to do so starts and ends. 3 | Modify the name and learning track to yours. 4 | Add any new change you need to but the former stated request is mandatory. 5 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | padding: 0; 4 | margin: 0; 5 | } 6 | body{ 7 | background-color:#ea5455; 8 | } 9 | 10 | .table-wrap{ 11 | position: absolute; 12 | left: 50%; 13 | top: 50%; 14 | transform: translate(-50%,-50%); 15 | } 16 | 17 | th, td{ 18 | padding: 12px; 19 | border: 1px solid #ddd; 20 | } 21 | table{ 22 | background: rgba(255, 255, 255, .2); 23 | width: 900px; 24 | height: 300px; 25 | table-layout: fixed; 26 | text-align: center; 27 | border: 1px #fff; 28 | border-collapse: collapse; 29 | font-weight: 700; 30 | box-shadow: 0 5px 15px rgba(0, 0, 0, .5); 31 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Sifon Etuk 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 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | A simple table stating your name and your learning track 11 | 12 | 13 |
14 | 15 | 18 | 19 | 22 | 25 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 |
16 | A simple table stating your name and your learning track 17 |
1 Sifon SolomonFrontend Engineering
2 Onah AnthonyCloud Engineering
3 Akintibubo PelumiFrontend Engineering
4 Olasoji OlamideFrontend Engineering
5Rashmi SubhashFull Stack Developer
60 |
61 | 62 | --------------------------------------------------------------------------------