Git Product home page Git Product logo

html.org.in's Introduction

html.org.in is an open-source HTML learning website.

So what does it mean?

Basically, we created this website for anyone who wants to learn HTML. This website is free-to-use and is maintained by the open-source community.

There is no subscription required to use the website. And there are no ads on the website.

We respect your privacy, so we do not track and do not sell any of your personal data.
We only store one cookie, which saves your preference of dark or light theme.

How can you contribute?

This section discusses how to contribute to the learning content of this project, whether that is adding new content which addresses a new topic, or updating existing content that is already on the website.

How can you contribute a new tutorial?

This section descibes how to add a new tutorial to the website.

  1. Create a sub-folder within the html folder.
  2. Name this sub-folder using the format html_topic.
    • For example, the HTML Introduction topic folder is named html_intro.
  3. Create an index.html file inside of the sub-folder you just created.
  4. Open the copy.html file in the repository's main directory.
  5. Copy the HTML contents of the copy.html file into your newly-created html_topic/index.html file.
    • copy.html contains the basic structure that topic webpages follow in this project. It includes the HTML code for the metadata, header, footer and navigation buttons.
    • Edit the <main> element to add your tutorial content to the webpage.
    • Note that there are two <div class="navigation-link"> elements within <main>. These two <div> elements contain the navigation buttons.
  6. After creating the 'index.html' page of yours,add the links of previous file and next file to your html page inside <div class="navigation-link">.
  7. Adding a video to the topic page
    If you would like to add a video to the topic's webpage, see the code below:
<div class="video__plyr">
    <video id="player" playsinline controls crossorigin data-poster="/path/to/poster.jpg">
    <source src="./cdn/video/Codes - 360.mp4" type="video/mp4" size="360" />
    <source src="./cdn/video/Codes - 540.mp4" type="video/mp4" size="576" />
    <source src="./cdn/video/Codes - 720.mp4" type="video/mp4" size="720" />
    <source src="./cdn/video/codes - 1080.mp4" type="video/mp4" size="1080" />
    </video>
</div>

To embed a video on the page:

  • Add a <div> to the index.html file for your topic. Ensure that the <div>'s structure is similar to the one above.
  • Inside the <div>, add one <source> element for each resolution/quality you will have for the video.
    • In the example above, the video is available in four resolutions so there are four <source> elements.
  • Set the src attribute of the <source> element to a string containing the filepath/URL to the video.
    • In the example above, the video files are located in ./cdn/video/, where cdn exists in the same directory as the topic's index.html file.

For more information on the HTML structure of topic webpages, please look into the copy.html file.

Our Contributors

html.org.in's People

Contributors

diptenusarkar avatar abulgit avatar anik4b avatar jatin00000 avatar khushpreet-007 avatar keegan-20 avatar pps-19012 avatar tanvnaik avatar maida12 avatar pranavsuriya-sr avatar ravi0900 avatar anshul137 avatar zainbinshakoor avatar roshankc682 avatar shahrozahmd avatar opshanka avatar manmohan11 avatar hallowdread avatar kiritocode1 avatar singharyan1007 avatar lakshmisowmya04 avatar nuelladev avatar ericchuk avatar jiya-garg9971 avatar maharshi-sinha avatar wilsenhc avatar jhonatasmatos avatar namit343 avatar navaneethmanoj avatar zenoctrl avatar

Stargazers

Himanshu Singh  avatar Borngreat promise obinna avatar Zhazha_JiaYiZhen avatar Ananta chattapadhyay avatar Srijita Baksi avatar Dinil Thilakarathne  avatar nikhilkuyya avatar  avatar Anishka Gupta avatar  avatar  avatar Misbah Aziz avatar  avatar  avatar AAKASH GANDHI avatar  avatar Karthik Ayangar avatar  avatar Cyric avatar Ashish Khare avatar  avatar

Watchers

 avatar  avatar Shibraj Deb avatar

html.org.in's Issues

UI/UX Edit: theme box overlaps the tutorial boxes

The Problem
The theme_box <div> overlaps the component boxes which provide links to specific tutorials.
See the screenshot below:
image
I think this is visually unappealing and mildly inconvenient.

Additionally, the theme box is only available on the main page. What if the user is reading a particular tutorial and decides they want to change the theme? Having to go back to the main page to change the theme may negatively impact the user's experience.

Possible Solution
I suggest moving the theme_box <div> so that it does not overlap with the tutorial component boxes; perhaps placing the theme box inside the header โ€” this would prevent it from causing the overlap issue and would also make the theme box available on every page.

Add styling to the nav bar

I would like to add styling to the nav bar as that would give the web page more aesthetics and the navbar would be fixed to a point.

HTML forms document

I would like to add a documentation on how to create forms in html. Please assign this issue to me.

[Bug] : Test Image Preview on (HTML File Paths) Page not Working

Image Loading Problem

Expected Solution--
It is an example of Absolut File Paths, The picture will be displayed from The Internet.
I think it's a good idea to put a Random Image URL So that the image changes in Every Refresh.

Current Behavior--

Screenshot 2023-10-06 141932
Expected Behavior--
Screenshot 2023-10-06 150620

Steps To Reproduce--

  1. Go to Main Website and Scroll Down
  2. Click on HTML File Paths
  3. Scroll Down

bug : homepage cards issue

When I opened the site on my laptop, it looked like this >>>

image

Is it supposed to look like this, or should I have a look into it if you want in accordance with Hacktoberfest !

Create About page

Creating an about page before telling about the elements to give a gist of about what the site offers

Attractive UI

hey! I would like to work on UI of the project and want to add Cursor effect, please assign it to me and make it hactoberfest acceptable

Sub folder for image maps

@Diptenusarkar I can create a sub folder which provides the detailed explanation of image maps or hotspot maps. Kindly assign me with this issue under the hacktoberfest label.
Thanks in advance.

Login Signup Page

I would like to work on to add login signup page to the project, please assign me the issue and make it hactoberfest acceptable

UI UX Improvements

Improving nav-bar buttons and font selection for a more trustable looking site, and buttons that don't look spammy.

Website localization problem

Hay, Recently I try to implement a new thing it's called localization.
If I open this website from India it will open an Indian website.
Our Recent website is - html.org.in
when I open this website from India it will open an India website their URL will be changed - in.html.org.in

Now the problem is when I open this website it does the same as I expected. But It still opens that link again.

Adding new feature Prettier and linter

Hi

Adding the code formatter

I would like to add the prettier in this project which is an automatic source code formatters. It take source code as input and produce properly formatted output. Their goal is to establish a common format for all source code in the project.

Adding the linter

Linters help us spot "silly" mistakes that all programmers make, or help us avoid certain code patterns that often lead to bugs. We want to make it easy for ourselves and new developers joining our project to not introduce bugs or bad code.
I will use ESlint

And i will Create a simple "one-step" solution for running your formatter and the linter on the entire project from the command line. This could be an npm script.
Please assign me thsi issue as well i will work on it.
Thanks

Documentation improvement: Make `README.md` easier to understand.

While I was reading the README.md file about how to contribute to the project and I found that it was difficult to understand.
The "How will you contribute?" section is specifically about contributing additional tutorial pages, but I was under the impression that the readme was talking about general contributions to the project. I think the readme should specify what it means.

I'd like to take some time to modify the README.md file to make the instructions a little clearer, easier to understand and fix up some minor grammar errors.

Not completely responsive

It is not responsive for screen size Mobile L, and devices like Blackberry playbook and Surface Duo.
Screenshot (1)

Can you assign me this issue?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.