├── .all-contributorsrc ├── Fifth Session └── README.md ├── First Session ├── Practice Codes │ ├── contact_info.html │ ├── form.html │ └── index.html └── README.md ├── Fourth Session ├── Assests │ └── js.jpg └── README.md ├── Hackathon Images ├── BILASPUR LOGO.png ├── GS Cup Logo.png ├── HACKATHON_banner2.png └── yay logo1.png ├── Hackathon Mechanism └── README.md ├── README.md ├── Second Session ├── CSS Documentation.pdf └── README.md └── Third Session ├── Assests ├── buttons.JPG ├── column.JPG ├── column1.JPG ├── grid.JPG ├── jumpo.JPG └── navbar.JPG └── README.md /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "contributors": [ 8 | { 9 | "login": "abhishekapk", 10 | "name": "Abhishek Kumar Gupta", 11 | "avatar_url": "https://avatars0.githubusercontent.com/u/64025312?v=4", 12 | "profile": "https://www.linkedin.com/in/abhishekapk/", 13 | "contributions": [ 14 | "doc" 15 | ] 16 | }, 17 | { 18 | "login": "Abhijit2505", 19 | "name": "Abhijit Tripathy", 20 | "avatar_url": "https://avatars3.githubusercontent.com/u/52751963?v=4", 21 | "profile": "https://abhijit2505.github.io/portfolio/", 22 | "contributions": [ 23 | "doc" 24 | ] 25 | }, 26 | { 27 | "login": "akrishna0", 28 | "name": "Akash Krishna", 29 | "avatar_url": "https://avatars0.githubusercontent.com/u/46137464?v=4", 30 | "profile": "https://github.com/akrishna0", 31 | "contributions": [ 32 | "doc" 33 | ] 34 | }, 35 | { 36 | "login": "Unknownone-af", 37 | "name": "Ajay Kumar Shukla", 38 | "avatar_url": "https://avatars0.githubusercontent.com/u/61351885?v=4", 39 | "profile": "https://www.linkedin.com/in/ajayshukla19/", 40 | "contributions": [ 41 | "doc" 42 | ] 43 | }, 44 | { 45 | "login": "ruhiawasthi", 46 | "name": "Ruhi Awasthi", 47 | "avatar_url": "https://avatars3.githubusercontent.com/u/59197808?v=4", 48 | "profile": "https://www.linkedin.com/in/ruhi-awasthi-5101b81a5", 49 | "contributions": [ 50 | "doc" 51 | ] 52 | }, 53 | { 54 | "login": "deepeshgarg09", 55 | "name": "Deepesh Garg", 56 | "avatar_url": "https://avatars1.githubusercontent.com/u/63818498?v=4", 57 | "profile": "https://www.linkedin.com/in/deepeshgarg09", 58 | "contributions": [ 59 | "doc" 60 | ] 61 | } 62 | ], 63 | "contributorsPerLine": 7, 64 | "projectName": "Front-End-Hackathon-Resources", 65 | "projectOwner": "Girlscript-Chapter-Bilaspur", 66 | "repoType": "github", 67 | "repoHost": "https://github.com", 68 | "skipCi": true 69 | } 70 | -------------------------------------------------------------------------------- /Fifth Session/README.md: -------------------------------------------------------------------------------- 1 | # About The Session - Basics of Git and Github 2 | 3 | 4 | 5 | 6 | This session revolves around the basics of Open Source, Closed source, version control, git and github. 7 | We will be giving a brief overview of how to use GIT and GITHUB. 8 | 9 | For Official Documentation, Visit - https://guides.github.com/ 10 | https://docs.github.com/en/github 11 | 12 | ## About the Documentation 13 | 14 | This is the **Cheat Sheet and reference** opened for everyone to use during the hackathon. There are resources and tools embeded inside which you can use as a participant. 15 | 16 | ## Softwares And Installations 17 | 18 | * One [GitHub](https://github.com/) account 19 | * Any of the browsers - Like Chrome, Safari,Opera etc. 20 | * [Git](https://git-scm.com/downloads) 21 | 22 | 23 | ## Content 24 | 25 | You can find the slides here - Slides (Click Here For Presentation Slides) 26 | 27 | ### Presentation Slides Contain these topics - 28 | 29 | * Open Source 30 | * Closed Source 31 | * Version Control System 32 | * Git 33 | * Github 34 | 35 | 36 | ### What is Git? - 37 | 38 | Git is officially defined as a *distributed version control system* (VCS). 39 | 40 | In other words, it's a system that tracks changes to our project files over time. It enables us to record project changes and go back to a specific version of the tracked files, at any given point in time. This system can be used by many people to efficiently work together and **collaborate on team projects**, where each developer can have their own version of the project, distributed on their computer. Later on, these individual versions of the project can be merged and adapted into the main version of the project. 41 | 42 | Basically, it's a massively popular tool for coordinating parallel work and managing projects among individuals and teams. Needless to say, knowing how to use Git is one of the most important skills for any developer nowadays - and it's definitely a great addition to your resume! 43 | 44 | Git official homepage: [https://git-scm.com/](https://git-scm.com/) 45 | 46 | 47 | For GIT Documentation, visit here - https://www.notion.so/Introduction-to-Git-ac396a0697704709a12b6a0e545db049 48 | 49 | 50 | ### What is Github? 51 | 52 | GitHub is a hosting platform for Git repositories. You can use Git on its own without Github (and other similar platforms), but it's difficult to collaborate or share your code with. others. 53 | 54 | - **Git is the version control system, the tool that tracks changes to our files over time** 55 | - **Github is a hosting service for projects that use Git.** 56 | 57 | ** Make sure to first familiarize yourself with Git before proceeding. 58 | 59 | 60 | Git is used to store projects inside *repositories* and track the complete history of all changes to the project code. Using GitHub, we can upload a local project repository to a remote cloud-based GitHub repository. We can also interact with public repositories published by other developers. 61 | 62 | GitHub could even be looked at as a social networking website for developers. Users can follow each other, give ratings, collaborate and communicate. 63 | 64 | GitHub allows developers to utilize, change or improve software from its repositories. Each repository contains all project files and the code history. Repositories can have multiple collaborators and can be either public or private. 65 | 66 | GitHub is also a popular way developers to publish their project portfolio online. It's an easy way to showcase skills and experience to potential employers or clients. It's an important technology to be familiar with, especially for a new developer who is just starting out. 67 | 68 | GitHub homepage: [github.com](http://github.com) 69 | 70 | 71 | For GITHUB Documentation, visit here - https://www.notion.so/Introduction-to-GitHub-202af6f64bbd4299b15f238dcd09d2a7 72 | 73 | 74 | 75 | #### References 76 | 77 | * [Github Docs](https://docs.github.com/en) 78 | * [Github Guides](https://guides.github.com/) 79 | * [Github Official Book](https://git-scm.com/book/en/v2) 80 | * https://docs.github.com/en/github 81 | * https://guides.github.com/features/wikis/ 82 | * https://guides.github.com/activities/hello-world/ 83 | 84 | #### Contributors 85 | 86 | * [Chhavi Verma](https://www.linkedin.com/in/chhavi-verma-605b37184/) 87 | * [Pranav Rajveer](https://www.linkedin.com/in/pranav-rajveer/) 88 | * [Yuvraj Singh](https://www.linkedin.com/in/yuvraj-singh-1889831a1/) 89 | * [Ruhi Awasthi](https://www.linkedin.com/in/ruhi-awasthi-5101b81a5/) 90 | * [Deepesh Garg](https://www.linkedin.com/in/deepeshgarg09/) 91 | 92 | -------------------------------------------------------------------------------- /First Session/Practice Codes/contact_info.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Abhijit's Contact Information 7 | 8 | 9 | 10 |

Contact Information

11 |

Adresses:

12 |

13 | 14 |    Home
15 |             16 | Some where in the earth,
17 |             18 | from mars,
19 |             20 | India,41465165451. 21 |

22 |
23 |
24 |

Reach me Out:

25 |

26 | 27 |             28 |             29 |             30 |             31 |             32 |             33 | 34 |
35 |          36 | Email 37 |             38 |             39 |             40 |             41 |             42 |             43 | Mobile No. 44 |
45 |          46 | abhijittripathy2546601499@gmail.com 47 |             48 |             49 |             50 | +91123456789 51 |
52 |
53 |
54 |

Social Profiles:

55 |

56 | 57 | 58 | 59 |             60 | 61 | 62 | 63 |             64 | 65 | 66 | 67 |             68 | 69 | 70 | 71 |             72 | 73 | 74 | 75 |

76 |
77 |

Contact Me:

78 |
79 | 80 |
81 | 82 |
83 |
84 |
85 |
86 | 87 |
88 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /First Session/Practice Codes/form.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | A Small Form 6 | 7 | 8 |
9 | Username:
10 | 11 |
12 | Email id:
13 |
14 |
15 |

16 |

17 | 18 | 19 |
20 | 21 | 22 | 23 |

24 | SELECT SUBJECTS 25 |
26 | 27 | 28 | 29 | 30 | 31 | 32 |

33 | 34 | 35 |
36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /First Session/Practice Codes/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Abhijit's Personal Webpage 7 | 8 | 9 | 10 | 11 | 14 | 27 | 28 |
12 | Profile Pic 13 | 15 |

Abhijit Tripathy

16 | 17 | Undergraduate Student
18 | Department Of 19 | Computer Science and Engineering, 20 |
21 | School Of Studies in Engineering and Technology,
22 | Guru Ghasidas University 23 |
24 | Chattisgarh,India,495009
25 |
26 |
29 |
30 |

About me

31 |

32 | I am an aspiring Machine Learning Engineer and AI developer,having a keen 33 | interest in problem solving, data structures, algorithms, discrete mathematics, 34 | number theory and statistical analysis. 35 | Also I like to solve cryptographic problems and take part in coding challenges 36 | organised monthly on different competitive programming sites. 37 | Currently, I am in search of some machine learning projects to work 38 | in real-time and learn from them. 39 |
40 |
41 | My specialization interest include, 42 |

    43 |
  1. Computer Vision
  2. 44 |
  3. Robotics
  4. 45 |
  5. Machine Learning
  6. 46 |
  7. Artificial Intelligence
  8. 47 |
  9. Micro-Economics and stocks
  10. 48 |
49 | My hobbies include, 50 |
    51 |
  1. Technical Content writing
  2. 52 |
  3. Graphics Designing
  4. 53 |
  5. Listen to Music
  6. 54 |
  7. Watching a Movie
  8. 55 |
56 | Contact information - Click Here 57 |

58 |
59 |

Developer Profiles

60 |

61 | 62 | 63 | 64 |             65 |      66 | 67 | 68 | 69 |             70 |      71 | 72 | 73 | 74 |             75 |      76 | 77 | 78 | 79 |             80 |      81 | 82 | 83 | 84 |             85 |      86 | 87 | 88 | 89 |

90 |
91 |

Work Experience

92 |
93 | 94 | 95 | 96 | 99 | 102 | 105 | 106 | 107 | 108 | 109 | 113 | 122 | 125 | 126 | 127 | 131 | 137 | 140 | 141 | 142 | 146 | 153 | 156 | 157 | 158 | 162 | 169 | 172 | 173 | 174 | 178 | 183 | 186 | 187 | 188 | 192 | 197 | 200 | 201 | 202 | 206 | 212 | 215 | 216 | 217 | 221 | 225 | 228 | 229 | 230 |
97 |
Job Name
98 |
100 |
Roles & responsibilities
101 |
103 |
Duration
104 |
110 | Chapter Leader
111 | (GirlScript Foundation) 112 |
114 |
    115 |
  • Publicize:- Spread awareness about Girlscript events and program in my region
  • 116 |
  • Ideate:- Strategize and drive innovative word of mouth campaigns in our activities and events
  • 117 |
  • Promote:- Ensuring enthusiastic participation from my region
  • 118 |
  • Organize:- Planning and organizing events in my community
  • 119 |
  • Represent:-Acting as a representative for Girlscript for promoting the festival in my circles
  • 120 |
121 |
123 | Jun 2020 - Present 124 |
128 | DSA Developer Intern
129 | (OpenGenus Foundation) 130 |
132 |
    133 |
  • Open-Source contribution in the existing project codes
  • 134 |
  • Writing technical articles
  • 135 |
136 |
138 | Jun 2020 - Present 139 |
143 | Data Analytics and Research Intern
144 | (Wealthy Waste) 145 |
147 |
    148 |
  • Analysis of the provided data (Exploratory Data Analysis)
  • 149 |
  • Correlating the data with real-life incidents, by using Statistical Analysis
  • 150 |
  • Preparing a research output based on the
  • 151 |
152 |
154 | May 2020 - Jun 2020 155 |
159 | Mission Advocate
160 | (Widhya) 161 |
163 |
    164 |
  • Creating content for Missions
  • 165 |
  • Creating communities and helping to reach out to more students
  • 166 |
  • Participate in the decision making processes along with the rest of Team Widhya
  • 167 |
168 |
170 | July 2020 - Present 171 |
175 | Problem Setter
176 | (Cutshort) 177 |
179 |
    180 |
  • Setting Problems ranging from easy to medium and hard levels
  • 181 |
182 |
184 | July 2020 - Present 185 |
189 | Management Team Member
190 | (The Uplift Project) 191 |
193 |
    194 |
  • Managing the entire slack application workspace for the Uplift Project
  • 195 |
196 |
198 | May 2020 - Present 199 |
203 | Technical Content Writer
204 | (Geeks For Geeks) 205 |
207 |
    208 |
  • Writing innovative technical articles
  • 209 |
  • Editing and improving the code and content of the existing article
  • 210 |
211 |
213 | May 2020 - Present 214 |
218 | Fellow
219 | (Incubate IND) 220 |
222 |
    223 |
  • INCIND Technology Fellowship is a unique and exclusive program for the coders, hackers, designers and innovators of tomorrow
224 |
226 | July 2020 - Present 227 |
231 |
232 |
233 |

Skills

234 |
235 | 236 | 237 | 238 | 241 | 244 | 247 | 250 | 251 | 252 | 253 | 254 | 257 | 260 | 263 | 266 | 267 | 268 | 271 | 274 | 277 | 280 | 281 | 282 | 283 | 286 | 289 | 292 | 295 | 296 | 297 | 298 | 301 | 304 | 307 | 310 | 311 | 312 | 313 |
239 | Skill's Name 240 | 242 | Grip 243 | 245 | Skill's Name 246 | 248 | Grip 249 |
255 | C++ Programming 256 | 258 | ⭐⭐⭐⭐⭐ 259 | 261 | Technical Writing 262 | 264 | ⭐⭐⭐⭐⭐ 265 |
269 | Python Programming 270 | 272 | ⭐⭐⭐⭐⭐ 273 | 275 | Blogging 276 | 278 | ⭐⭐⭐⭐ 279 |
284 | Machine Learning 285 | 287 | ⭐⭐⭐⭐ 288 | 290 | Micro-Economics 291 | 293 | ⭐⭐⭐ 294 |
299 | Web Development 300 | 302 | ⭐⭐⭐ 303 | 305 | Git & Github 306 | 308 | ⭐⭐⭐⭐ 309 |
314 |
315 |
316 | 317 | 318 | 319 | -------------------------------------------------------------------------------- /First Session/README.md: -------------------------------------------------------------------------------- 1 | # About The Session - "Web Development Basics and HTML" 2 | 3 | 4 | This session revolves around the basics of web, ranging from what browser,server,internet are. 5 | We will be giving a brief overview of how structuring of webpage is done using HTML. 6 | 7 | ## About the Documentation 8 | 9 | This is the **Cheat Sheet** opened for everyone to use during the hackathon. There are resources and tools embeded inside which you can use as a participant. 10 | 11 | ## Softwares And Installations 12 | 13 | You can install any of these Editors, 14 | * [Sublime Text](https://www.sublimetext.com/) 15 | * [Atom](https://atom.io/) [Preferable, will be using in the session] 16 | * NotePad - May Be present in your system already 17 | * One [GitHub](https://github.com/) account 18 | * Any of the browsers - Like Chrome, Safari,Opera etc. 19 | 20 | ## Content 21 | 22 | You can find the slides here - Slides 23 | 24 | * [How Does The Internet Work](https://github.com/Abhijit2505/Front-End-Hackathon-Resources/blob/master/First%20Session/DOC.md#how-does-the-internet-work-) 25 | * [What is HTML](https://github.com/Abhijit2505/Front-End-Hackathon-Resources/blob/master/First%20Session/DOC.md#what-is-html-) 26 | *
Tags and Elements Cheatsheet 27 | 28 | * [comments](https://github.com/Girlscript-Chapter-Bilaspur/Front-End-Hackathon-Resources/tree/master/First%20Session#comments) 29 | * [html](https://github.com/Girlscript-Chapter-Bilaspur/Front-End-Hackathon-Resources/tree/master/First%20Session#html) 30 | * [head](https://github.com/Girlscript-Chapter-Bilaspur/Front-End-Hackathon-Resources/tree/master/First%20Session#head) 31 | * [body](https://github.com/Girlscript-Chapter-Bilaspur/Front-End-Hackathon-Resources/tree/master/First%20Session#body) 32 | * [heading](https://github.com/Girlscript-Chapter-Bilaspur/Front-End-Hackathon-Resources/tree/master/First%20Session#heading) 33 | * [paragraph](https://github.com/Girlscript-Chapter-Bilaspur/Front-End-Hackathon-Resources/tree/master/First%20Session#paragraph) 34 | * [br](https://github.com/Girlscript-Chapter-Bilaspur/Front-End-Hackathon-Resources/tree/master/First%20Session#br) 35 | * [anchor](https://github.com/Girlscript-Chapter-Bilaspur/Front-End-Hackathon-Resources/tree/master/First%20Session#anchor) 36 | * [img](https://github.com/Girlscript-Chapter-Bilaspur/Front-End-Hackathon-Resources/tree/master/First%20Session#img) 37 | * [list](https://github.com/Girlscript-Chapter-Bilaspur/Front-End-Hackathon-Resources/tree/master/First%20Session#list) 38 | * [Text Formatting](https://github.com/Girlscript-Chapter-Bilaspur/Front-End-Hackathon-Resources/tree/master/First%20Session#text-formatting)
39 | 40 | *
Some Intermediate Stuffs 41 | 42 | 43 | * [Making HTML Table Element](https://github.com/Girlscript-Chapter-Bilaspur/Front-End-Hackathon-Resources/tree/master/First%20Session#making-html-table-element)
44 | 45 | 46 | 47 | ### How Does The Internet Work ? 48 | 49 | The Internet is made up of a massive network of specialized computers called routers. Each router’s job is to know how to move packets along from 50 | their source to their destination. A packet will have moved through multiple routers during its journey. 51 | 52 | Along with the session slides, here is an addition from [Medium](https://medium.com/), Have a visit to the link - [How Does The Internet Work?](https://medium.com/@User3141592/how-does-the-internet-work-edc2e22e7eb8#:~:text=The%20Internet%20is%20made%20up,next%2C%20it's%20called%20a%20hop.) 53 | to get an entire overview of how the internet works. 54 | 55 | ### What is HTML ? 56 | 57 | * **HTML** stands for **Hypertext Markup Language**. It allows the user to create and structure sections, paragraphs, headings, links, and blockquotes 58 | for web pages and applications. 59 | 60 | * HTML is not a programming language, meaning it doesn’t have the ability to create dynamic functionality. Instead, it makes it possible to organize 61 | and format documents, similarly to Microsoft Word. That's why it is known as **Mark Up Language**. 62 | * HTML documents are files that end with a **.html** or **.htm** extension. You can view then using any **web browser** (such as Google Chrome, Safari, or Mozilla Firefox). 63 | The browser reads the HTML file and renders its content so that internet users can view it. 64 | * Usually, the average website includes several different **HTML pages**. For instance: home pages, about pages, contact pages would all have separate HTML documents. 65 | * Each HTML page consists of a set of **tags** (also called elements), which you can refer to as the building blocks of web pages. 66 | They create a hierarchy that structures the content into sections, paragraphs, headings, and other content blocks. 67 | 68 | * Most HTML elements have an opening and a closing that use the `````` syntax. 69 | 70 | ### Tags and Elements CheatSheet 71 | 72 | #### comments 73 | 74 | `````` is used to add comments. 75 | 76 | #### html 77 | 78 | The `````` represents the root (top-level element) of an HTML document, so it is also referred to as the root element. 79 | All other elements must be descendants of this element. 80 | 81 | **Example** 82 | 83 | ```html 84 | 85 | 86 | ... 87 | ... 88 | 89 | ``` 90 | 91 | Providing a **lang** attribute with a valid IETF identifying language tag on the html element will help 92 | screen reading technology determine the proper language to announce. The identifying language tag should describe 93 | the language used by the majority of the content of the page. Without it, screen readers will 94 | typically default to the operating system's set language, which may cause mispronunciations. 95 | 96 | Including a valid **lang** declaration on the html element also ensures that important metadata contained in the page's 97 | ``````, such as the page's ``````, are also announced properly. 98 | 99 | #### head 100 | 101 | The ```<head>``` provides general information (metadata) about the document, including its title and links to its scripts and style sheets. 102 | 103 | **Example** 104 | 105 | ```html 106 | <html> 107 | <head> 108 | <title>Document title 109 | 110 | 111 | ``` 112 | 113 | The HTML Title element `````` defines the document's title that is shown in a browser's title bar or a page's tab. 114 | It only contains text and tags within the element are ignored. 115 | 116 | #### body 117 | 118 | The ```<body>``` represents the content of an HTML document. There can be only one ```<body>``` element in a document. 119 | 120 | **Example** 121 | 122 | ```html 123 | <html> 124 | <head> 125 | <title>Document title 126 | 127 | 128 |

This is a paragraph

129 | 130 | 131 | ``` 132 | 133 | #### heading 134 | 135 | This one is used to create headings with six different tags ranging from **h1** to **h6**, Have a look at the example below, 136 | 137 | **Example** 138 | 139 | ```html 140 |

Heading level 1

141 |

Heading level 2

142 |

Heading level 3

143 |

Heading level 4

144 |
Heading level 5
145 |
Heading level 6
146 | ``` 147 | 148 |

Heading level 1

149 |

Heading level 2

150 |

Heading level 3

151 |

Heading level 4

152 |
Heading level 5
153 |
Heading level 6
154 | 155 | #### paragraph 156 | 157 | The ```

``` represents a paragraph. Paragraphs are usually represented in visual media as blocks of text separated from adjacent blocks by blank 158 | lines and/or first-line indentation, but HTML paragraphs can be any structural grouping of related content, such as images or form fields. 159 | 160 | **Example** 161 | 162 | ```html 163 |

This is the first paragraph of text. 164 | This is the first paragraph of text. 165 | This is the first paragraph of text. 166 | This is the first paragraph of text.

167 |

This is the second paragraph. 168 | This is the second paragraph. 169 | This is the second paragraph. 170 | This is the second paragraph.

171 | ``` 172 | 173 | #### br 174 | 175 | The ```
``` produces a line break in text (carriage-return). It is useful for writing a poem or an address, where the division of lines is significant. 176 | 177 | **Example** 178 | 179 | ```html 180 | GirlScript Bilaspur
181 | Bilaspur,Chhattisgarh
182 | 123456
183 | India
184 | ``` 185 | 186 | GirlScript Bilaspur
187 | Bilaspur,Chhattisgarh
188 | 123456
189 | India
190 | 191 | #### anchor 192 | 193 | The `````` (or anchor element) creates a hyperlink to other web pages, files, locations within the same page, email addresses, or any other URL. 194 | 195 | **Example** 196 | 197 | ```html 198 | 199 | External Link 200 | 201 | ``` 202 | 203 | 204 | External Link 205 | 206 | 207 | ##### Common Attributes - 208 | ##### href 209 | Contains a URL or a URL fragment that the hyperlink points to. 210 | A URL fragment is a name preceded by a hash mark (#), which specifies an internal target location (an ID of an HTML element) within the current document. URLs are not restricted to Web (HTTP)-based documents, but can use any protocol supported by the browser. For example, file:, ftp:, and mailto: work in most browsers. 211 | You can use href="#top" or the empty fragment href="#" to link to the top of the current page. This behavior is specified by HTML5. 212 | 213 | ##### rel 214 | Specifies the relationship of the target object to the link object. The value is a space-separated list of link types. 215 | 216 | ##### target 217 | Specifies where to display the linked URL. It is a name of, or keyword for, a browsing context: a tab, window, or