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 (0.6%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
·
Repository
Website for Info 151
Basic Info
- Host: GitHub
- Owner: JinZ278
- Language: HTML
- Default Branch: main
- Size: 2.3 MB
Statistics
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 0
Created over 4 years ago
· Last pushed over 4 years ago
Metadata Files
Readme
Citation
README.md
Website-151-
Website for Info 151 A website built for Drexel University Info 151 Class.
Owner
- Name: Jin Zhang
- Login: JinZ278
- Kind: user
- Repositories: 1
- Profile: https://github.com/JinZ278
Computer Science Major
Citation (citations.html)
<!DOCTYPE html>
<!--
=========================================================================================
Project Name: No Ink No Pen Citations
Project Description: To cite images used for the website for No Ink No Pen
Date: 11/7/2021
Programmer Name: Suki Chen and Jin Zhang
=========================================================================================
-->
<html lang="en">
<head>
<meta charset="utf-8">
<!-- jz Linking to CSS file for homepage -->
<link rel="stylesheet" href="style.css">
<!-- jz Changing the font of the page to Cinzel by importing from Google Fonts -->
<style type="text/css"> @import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap'); </style>
<!-- jz Title of the document -->
<title>Citations</title>
</head>
<body>
<!-- jz Specify class names for CSS file-->
<div class = "container">
<br>
<!-- jz add logo to the center of the page -->
<div class = "logo">
<img src = "images/logo.png" alt = "Logo" class = "logo-image">
</div>
<br>
<!-- jz Link to other pages on the website and classify the links to have the class attribute center -->
<div class = "navbar">
<a href = "index.html" class = "item1"> HOME </a>
<a href = "about.html" class = "item1"> ABOUT </a>
<a href = "gel.html" class = "item1"> GEL </a>
<a href = "fountain.html" class = "item1"> FOUNTAIN </a>
<a href = "ink.html" class = "item1"> INK </a>
<a href = "citations.html" class = "item1"> CITATIONS </a>
</div>
<br>
</div>
<!-- sc section for citations for the photos -->
<div class = "citation">
<h2> Homepage - Photo Credits </h2>
<!-- sc List of citations for photos used on Homepage -->
<ul style ="list-style:none; line-height:40px">
<li> No Ink No Pen Logo, (2021). <em> Logo </em> [Graphic]. Canva, <a href = https://bit.ly/3CWy4o0> Link. </a>
<li> "Fountain Pen on Top of Notebook Beside Drinking Mug." Pexels, <a href = https://www.pexels.com/photo/fountain-pen-on-top-of-notebook-beside-drinking-mug-64776/> Link. </a>
<li> Bailey, Jess. "Notebook, Book and Pen." Pixabay, 2018, <a href = https://pixabay.com/images/id-3176776/> Link. </a>
<li> Barbhuiya, Towfiqu. "Top View of a Diary and Fountain Pen on White Background." Canva, 2020, <a href = https://www.canva.com/media/MAEK3YElSfI> Link. </a>
<li> Stux. "Untitled." Pixabay, 2020, <a href = https://pixabay.com/images/id-384867/> Link. </a>
<!-- Links to the images made on canva - here for reference -->
<!-- Homepage banner - https://www.canva.com/design/DAEsE6tYZOs/7GA6Swk8Ch7JSeE-iz9BxA/view?utm_content=DAEsE6tYZOs&utm_campaign=designshare&utm_medium=link&utm_source=publishsharelink -->
<!-- Homepage Images - https://www.canva.com/design/DAEu0Sha7sQ/taEubS5NgXCyomQ-UdCzfQ/view?utm_content=DAEu0Sha7sQ&utm_campaign=designshare&utm_medium=link&utm_source=publishsharelink -->
<!-- Logo - https://www.canva.com/design/DAErtlews_A/k_eYtzJBImUyzUS5lKCbHA/edit-->
</ul>
</div>
<!-- sc Create section for contact information with formatting footer -->
<div class = "footer">
<!-- sc Add space before header and change color of contact us header to white -->
<div class = "footer-item">
<h3 style="color:#F9F9F9;" > About Us </h3>
<p> No Ink No Pen is a student-owned stationery store based in Philadelphia, PA. We currently do not have a physical location but...<a href ="about.html">read more</a></p>
</div>
<!-- sc Create unordered list for social media pages and other contact information -->
<div class = "footer-item">
<ul>
<h3 style="color:#F9F9F9;" > Contact Us </h3>
<li> Twitter: @NoInkNoPen</li>
<li> Instagram: @NoInkNoPen</li>
<li> Facebook: @NoInkNoPen</li>
<li> Reddit: r/NoInkNoPen</li>
<!-- sc Link to email -->
<li> Email: <a href = "mailto:sc3872@drexel.edu">sc3872@drexel.edu </a></li>
</ul>
</div>
</div>
</body>
</html>