newtfire / introDH-Hub

shared repo for DIGIT 100: Introduction to Digital Humanities class at Penn State Erie, The Behrend College
https://newtfire.github.io/introDH-Hub/
Creative Commons Zero v1.0 Universal
8 stars 4 forks source link

Workshopping Websites #7

Closed ebeshero closed 3 years ago

ebeshero commented 3 years ago

Post links to your websites in progress here in this issue if you'd like to get some viewer response. Include any commentary or questions about things you'd like to do or add or change!

arrowarchive commented 3 years ago

@ebeshero, this is the link to my current GitHub website: The Arrowarchive

I plan to create thumbnails for my pictures that redirect to individual tabs for the image, changing my layout, and showing my profile picture on front page (and I really want to do the last one, since I mentioned it on my FAQ, but I don't know how to do that/if I can do that with my current theme)

Here's the link to the wordpress as well: The Arrowarchive Wordpress

I've been having issues with adding pages and links. I have one for each, but neither are showing up on the main page.

ebeshero commented 3 years ago

Link to my site. I'd love to know what you think of the color choice and fonts here. Should I change my headings? Do you notice any errors?

am0eba-byte commented 3 years ago

do the click to get my git and also my Wordpress I definitely want to put more into my GitHub pages, but I'd appreciate feedback on any aspect of both of them. Be as cruel and critical as you'd like

NickyV1234 commented 3 years ago

my psu site that i have very little work done on but its still something

ebeshero commented 3 years ago

@arrowarchive and all interested in image display issues. Here is some code that you can adapt to alter the display size of your image on your webpage:

<img src="images/yourImage.jpg" alt="Girl in a jacket" width="20"/>
ebeshero commented 3 years ago

This HTML code is equivalent to the markdown for images, only it gets you more detail:

![Girl in a jacket](images/yourImage.png)
ebeshero commented 3 years ago

How to link a thumbnail (small image) to a larger image:

Example Link code: [thing you are linking whether image or text](images/yourImage.png)

Thumbnail linking to full-size image:

[<img src="images/yourImage.jpg" alt="Girl in a jacket" width="20"/>](images/yourImage.png)