Science Score: 18.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
-
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (2.4%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
·
Repository
A website created using HTML, CSS, and Javascript
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Created over 2 years ago
· Last pushed over 2 years ago
Metadata Files
Readme
Citation
README.md
Green House
Overview
Tools: HTML | CSS | Javascript
This website is designed to promote and sell succulent plants, boasting scalability across various devices. Developed using HTML, CSS, and JavaScript, it offers a seamless experience for users on different platforms.
Credits
Contributor: Yerim Doo, (Dominic) Chelsea Jennifer Irawan
Owner
- Name: LightChase
- Login: Yorcs
- Kind: user
- Repositories: 1
- Profile: https://github.com/Yorcs
Citation (citations.html)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Green House</title>
<link href="css/main.css" rel="stylesheet">
<script src="dropdown.js"></script>
</head>
<body>
<header>
<h1><a href="index.html" class="h1-link">Green House</a></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="product_listing.html">Products</a></li>
<li><a href="contact_us.html">Contact Us</a></li>
</ul>
</nav>
<a class="checkout-cart" href="checkout.html"> <img src="img/cart.png"
alt = "image of a checkout cart" width="40" height="20"></a>
</header>
<div class = "navbar-container">
<div class = "navbar">
<input type="checkbox" id="myCheck" onclick="myFunction()">
<label for="myCheck"><img src="img/menu.png" alt = "hamburger menu" width="25" height="25"></label>
<h1>Green House</h1>
<a class="checkout-cart" href="checkout.html"> <img src="img/cart.png"
alt = "cart" width="40" height="20">
</a>
</div>
<nav id="dropdown" style="display:none">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="product_listing.html">Products</a></li>
<li><a href="contact_us.html">Contact Us</a></li>
</ul>
</nav>
</div>
<h2 class="h2-headings">Citations</h2>
<div id="citations">
<ol>
<li>Matteson, Steve. Designer. 2011. <strong>Open Sans [Font]</strong>. Retrieved from <a href="https://www.google.com/fonts#QuickUsePlace:quickUse/Family:Open+Sans">https://www.google.com/fonts#QuickUsePlace:quickUse/Family:Open+Sans</a></li>
<li>Harvey, Stephanie. Photographer. 2017. Aloe Plant. Retrieved from <a href= "https://unsplash.com/photos/T0inbt7nRME">https://unsplash.com/photos/T0inbt7nRME</a></li>
<li>Harvey, Stephanie. Photographer. 2017. Kaya Cactus. Retrieved from <a href= "https://unsplash.com/photos/f7PfM2NklZ4">https://unsplash.com/photos/f7PfM2NklZ4</a></li>
<li>Harvey, Stephanie. Photographer. 2017. Dori Succulent. Retrieved from <a href= "https://unsplash.com/photos/vHkj3fX9wCk">https://unsplash.com/photos/vHkj3fX9wCk</a></li>
<li>Harvey, Stephanie. Photographer. 2017. Margo Succulent. Retrieved from <a href= "https://unsplash.com/photos/sTgmxWNK9rY">https://unsplash.com/photos/sTgmxWNK9r</a></li>
<li>Harvey, Stephanie. Photographer. 2017. Adele Cactus. Retrieved from <a href= "https://unsplash.com/photos/N9lmtlOuaDM">https://unsplash.com/photos/N9lmtlOuaDM</a></li>
<li> Impallari, Pablo. Designer. Fuenzalida, Rodrigo. Designer. 2012. Raleway Font. Retrieved from <a href = https://fonts.google.com/specimen/Raleway> https://fonts.google.com/specimen/Raleway?query=rale </a> </li>
<li> Scaglione , José. Designer. Burian, Veronika. Designer. 2009. Adelle Font. Retrieved from <a href = https://fonts.adobe.com/fonts/adelle> https://fonts.adobe.com/fonts/adelle </a> </li>
<li> Icon8. Checkout Cart Icon. Retrieved from <a href = https://icons8.com/icons/set/cart> https://icons8.com/icons/set/cart </a> </li>
<li> Icon8. Hamburger Menu. Retrieved from <a href = https://icons8.com/icons/set/hamburger-menu> https://icons8.com/icons/set/hamburger-menu </a> </li>
</ol>
</div>
<footer>
<div id = "footer-content">
<p>@Copyright Green House 2023</p>
<a href="index.html">Home</a>
<a href="product_listing.html">Products</a>
<a href="styleguide.html">Guide</a>
<a href="citations.html">Citations</a>
<p>4949 Canada Way, Burnaby, BC, V8G 2M3</p>
</div>
</footer>
</body>
</html>