Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic links in README
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (0.2%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
·
Repository
Basic Info
- Host: GitHub
- Owner: sadaka2025
- Language: JavaScript
- Default Branch: master
- Size: 1.95 KB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Created almost 4 years ago
· Last pushed almost 4 years ago
Metadata Files
Citation
Owner
- Name: صدقة جارية
- Login: sadaka2025
- Kind: user
- Location: تونس
- Company: التعليم الشرعي عن بعد
- Repositories: 1
- Profile: https://github.com/sadaka2025
زاد الطالب
Citation (citation.html)
<!DOCTYPE html> <html> <head> <!-- Loading The Bootstrap Library --> <link rel="stylesheet" href= "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity= "sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"/> <!-- Loading Icons From Font Awesome --> <link rel="stylesheet" href= "https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity= "sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous"> <!-- Linking Your CSS File --> <link rel="stylesheet" href="style2.css"/> <!-- Loading Roboto Font from Google Fonts --> <link href= "https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet"> <!-- Loading Open Sans Font from Google Fonts --> <link href= "https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap" rel="stylesheet"> </head> <body id="body"> <div> <!-- Quote Box --> <div class="block text-center"> <!-- Front part of the Quote Box --> <div class = "quote-box block__main block__front"> <!-- Quote to be Displayed Here --> <span class = "quote"> <!-- Hyphen is Displayed --> <i class="fas fa-2x fa-quote-left"></i> <!-- Quote Text --> <span class = "text"> Quote To be Displayed Here </span> </span> <!-- Author to be Displayed Here --> <div class = "author"> Author to be Displayed Here </div> <a class = "new-quote btn btn-default" onclick="newQuote()">New Quote</a> </div> <!-- Back Part of the Quote Box --> <div class = "quote-box block__main block__back"> <!-- Quote to be Displayed Here --> <span class = "quote"> <!-- Hyphen is Displayed --> <i class="fas fa-2x fa-quote-left"></i> <!-- Quote Text --> <span class = "text"> Quote To be Displayed Here </span> </span> <!-- Author to be Displayed Here --> <div class = "author"> Author to be Displayed Here </div> <!-- Button --> <a class = "new-quote btn btn-default " onclick="newQuote()">New Quote</a> </div> </div> </div> <!-- Linking Your JavaScript File --> <script src="script2.js"></script> </body> </html>