Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cara's First PR #4

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
317 changes: 174 additions & 143 deletions cara_murphy/art.html

Large diffs are not rendered by default.

Binary file added cara_murphy/artForWebsite/websitePortrait.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 53 additions & 0 deletions cara_murphy/contactMe.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet'>
<script src="script.js"></script>
<title>home</title>
</head>

<body>
<main>
<div class="header">
<a class="home" href="index.html">C</a>
<a href="resume.html">
<div class="tab">
photography </div>
</a>
<a href="graphicDesign.html">
<div class="tab">
ui/ux
</div>
</a>
<a href="art.html">
<div class="tab">
art</div>
</a>
</div>


<div class="contactContainer">
<form action="#">
<h2>contact me!</h2>
<label for="email">
<h4>Email</h4>
<input type="email" class="contactBox" id="email" placeholder="johndoe@example.com" />
</label>
<label for="message">
<h4>Message</h4>
<textarea id="message" class="contactBox" placeholder="Inquiries? Questions? Comments?"></textarea>
</label>
<div class="submit-button-wrapper">
<input type="submit" value="Send Message" id="submit-button" />
</div>
</form>
</div>
</main>
</body>

</html>
68 changes: 37 additions & 31 deletions cara_murphy/index.html
Original file line number Diff line number Diff line change
@@ -7,27 +7,25 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet'>
<script type="text/javascript" src="js/script.js"></script>
<script src="script.js"></script>
<title>home</title>
</head>

<body>
<main>


<a class="home" href="index.html" id="homeC">C</a>
<div class="header">
<a class="home" href="index.html">C</a>
<a href="resume.html">
<div class="tab" id="leftTab">
resume </div>
<div class="tab">
photography </div>
</a>
<a href="graphicDesign.html">
<div class="tab" id="middleTab">
graphic design
<div class="tab">
ui/ux
</div>
</a>
<a href="art.html">
<div class="tab" id="rightTab">
<div class="tab">
art</div>
</a>
</div>
@@ -36,32 +34,40 @@

<div class="aboutBox">

<image src="senior_photo.JPG" class="aboutPhoto"></image>
<div class="name">
Cara Murphy
</div>
<p id="aboutMe">hi there!
<br>
<image src="artForWebsite/websitePortrait.png" class="aboutPhoto"></image>

I'm an artist and incoming freshman at the university <br>of maryland college-park majoring in
computer science!
<div class="aboutText">
<h1>Cara Murphy</h1>
<p id="aboutMe">
I am an <span class="highlighted">artist</span> and <span class="highlighted">computer science
student</span> at the University
of Maryland. <br>
Experience in digital art, painting, NFT art, UI/UX design, and ?.
</p>
<div class="greetBar">let's talk!</div>
<div class="quickButtonsContainer">

</p>
<div class="quickButtonsBar">
<button class="quickButton" onclick="parent.open('https://github.com/caramurphyy')">
<image src="logos/githubLogo.png" class="logo"></image>
</button>
<button class="quickButton"
onClick="parent.open('https://www.linkedin.com/in/cara-murphy-1384661a4/')">
<image src="logos/linkedInLogo.png" class="logo">
</image>
</button>
<a href="contactMe.html">
<button class="quickButton">
<image src="logos/mailLogo.png" class="logo">
</image>
</button>
</a>
</div>
</div>
</div>
</div>

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix spacing.

<div class="quickButtonsContainer">
<button class="quickButton">
<image src="logos/linkedInLogo.png" class="logo"></image>
</button>
<button class="quickButton" onClick="parent.open('https://www.linkedin.com/in/cara-murphy-1384661a4/')">
<image src="logos/linkedInLogo.png" class="logo">
</image>
</button>
<button class="quickButton">
<image src="logos/mailLogo.png" class="logo">
</image>
</button>
</div>



</main>
Binary file added cara_murphy/logos/githubLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified cara_murphy/logos/linkedInLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified cara_murphy/logos/mailLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions cara_murphy/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
let submitButton = document.querySelector('#submit-button');

function clickListener(event) {
event.preventDefault();
let emailInput = document.querySelector('#email');
let messageInput = document.querySelector('#message');

let emailText = emailInput.value;
let messageText = messageInput.value;

console.log("email: ", emailText, " message: ", messageText);


}
submitButton.addEventListener('click', clickListener);
Binary file removed cara_murphy/senior_photo.JPG
Binary file not shown.
Loading