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

Hang - Lions #103

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
Binary file added assets/image/books.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/cooking.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/giphy.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/movie.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/music.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/profilepic.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/pullups.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image/task.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
91 changes: 88 additions & 3 deletions pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,95 @@
<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">
<title>Document</title>
<link rel = "stylesheet" href = "../styles/about.css">
<title>About Me</title>
</head>
<body>

<header>
<h1>About Me</h1>
<nav class = "navbar">
<a href = "index.html">HOME</a>
<a href = portfolio.html > PORTFOLIO</a>
</nav>
</header>
<section class="hero" id="about">
<img
src = "../assets/image/profilepic.JPG"
alt="Hang"
loading = "lazy"
class ="hero-img"
/>
<div class="bio animate__animated animate__shakeX"></div>
<h2 class="bio-title">About Me</h2>
<p class="bio-text">
Natural science fanatic turned aspiring software developer after learning more about the art and science of computers and coding. While a seeker of new thrills and experiences, I enjoy a balance of routine at my hometown in Seattle. When I’m not at home as a kitchen chemist, you can find me exploring alpine lakes, mountains, and international lands. Wherever I am, I am dedicated to creating software, moving one step closer to my goal in creating products with less bias in the tech industry.
</p>
</section>

<section>
<h2>Interest</h2>
<ul>
<li>
Pull-ups anywhere and everywhere
</li>
<li>
Connecting to my roots through cooking
</li>
<li>
Running. Ideally trails
</li>
<li>
Journaling
</li>
<li>
Diminishing food waste
</li>
<li>
Live music of all genres
</li>
<li>
Theater
</li>
<li>
Reading
</li>
</ul>

<h3 class = "likes">
<img
src = "../assets/image/pullups.gif"
alt = "pull-ups"
width = 200
height = 350
/>
<img
src = "../assets/image/music.jpg"
alt = "music"
width = 200
height = 350
/>
<img
src = "../assets/image/cooking.jpeg"
alt = "cooking"

Choose a reason for hiding this comment

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

It would be great if the alt text for the images were more descriptive. For someone with low vision/blindness, they depend on screen readers to tell them what the picture is. For example, this picture will just be called "cooking", which doesn't capture the beautiful dish you've created.

width = 200
height =350
/>
<img
src = "../assets/image/books.jpeg"
alt = "reading"
width = 200
height =350
/>
</h3>
</section>

<footer>
<h4>connect with me</h4>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<a href="https://www.instagram.com/hang_m_tran/" class="fa fa-instagram"></a>
<a href="https://www.linkedin.com/in/hang-m-tran/" class="fa fa-linkedin"></a>
<a href="https://github.com/hangmtran" class="fa fa-github"></a>
</footer>

</body>
</html>
53 changes: 47 additions & 6 deletions pages/index.html
Original file line number Diff line number Diff line change
@@ -1,12 +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">
<title>Document</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Home Page</title>
<link rel = "stylesheet" href = "../styles/index.css">
</head>

<body>

<header>
<h1>Hang Tran</h1>
<h2> Software Developer</h2>
</header>

<nav class = "navbar">
<a href = "about.html">ABOUT ME</a>
<a href = portfolio.html > PORTFOLIO</a>
</nav>

<main>
<h3> Specializations</h3>
<ul>
<li>
Python
</li>
<li>
Flask
</li>
<li>
SQL
</li>
<li>
HTMl
</li>
<li>
CSS
</li>
<li>
Javascript
</li>
</ul>
</main>

<footer class = container>
<h4>connect with me</h4>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<a href="https://www.instagram.com/hang_m_tran/" class="fa fa-instagram"></a>
<a href="https://www.linkedin.com/in/hang-m-tran/" class="fa fa-linkedin"></a>
<a href="https://github.com/hangmtran" class="fa fa-github"></a>
</footer>
</body>
</html>
</html>
67 changes: 64 additions & 3 deletions pages/portfolio.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,71 @@
<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">
<title>Document</title>
<title>portfolio</title>
<link rel = "stylesheet" href = "../styles/portfolio.css">


</head>
<body>
<header>
<h1>PORTFOLIO</h1>
<nav class = "navbar">
<a href = "about.html">ABOUT ME</a>
<a href = index.html > HOME</a>
</nav>
</header>


<h2>Projects</h2>
<main>
<div class="task image">
<img
src = "../assets/image/task.png"
alt="task list"
loading = "lazy"
class ="hero-img"
/>
<div>
<a class="task title" href = "https://github.com/hangmtran/task-list-api">Task List</a>
<p class="task summary">
Built API handling task and goals using CRUD methods. This app also connects to slack via slack api, enabling request to send message if task has been completed. Developed with Python, Flask, and SQlAlchemy

</p>
</div>
</div>

<div class = "viewing image">
<img
src = "../assets/image/movie.jpg"
alt="movie"
loading = "lazy"
class = "movie-img"
width = 200
height = 200

/>

<div>
<a class="viewing title" href = "https://github.com/hangmtran/viewing-party.git">Viewing Party</a>
<p class="viewing summary">
Recommends movies to user from friends based on different criteria such as most watched genre, unique watches, and subscription based recommendations. Developed with Python.
</p>
</div>

</div>
</main>



<footer>
<h4>connect with me</h4>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">


<a href="https://www.instagram.com/hang_m_tran/" class="fa fa-instagram"></a>
<a href="https://www.linkedin.com/in/hang-m-tran/" class="fa fa-linkedin"></a>
<a href="https://github.com/hangmtran" class="fa fa-github"></a>
</footer>
</body>
</html>
</html>

113 changes: 113 additions & 0 deletions styles/about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
.hero {
display: flex;
align-items: center;
justify-content: center;
gap: 2.5rem;
max-width: 68.75rem;
margin: auto;
}
.hero img {
height: 25em;
width: 25rem;
}

.bio {
width: 25rem;
padding: 0.625rem;
border-radius: 6px;
box-shadow: 0px 4px 15px 4px var(--primary-shadow);
}

.bio h2 {
margin-bottom: var(--bottom-margin);
}

.bio p {
line-height: var(--line-height);
padding: 0.3rem 0;
}

nav {
position: sticky;
top: 0;
left: 0;
z-index: 1;
display: flex;
align-items: center;
justify-content: space-evenly;
padding: .5rem 1rem;
background-color: var(--bg-color);
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.navbar a {
color: black;
padding: 14px 20px;
text-decoration: none;
display: inline-block;

}

.navbar a:hover {
color: #0000;
background:
linear-gradient(45deg, white, 50%,#000 0)
var(--_p,100%)/200% no-repeat;
-webkit-background-clip: text;
background-clip: text;
transition: .5s;
--_p: 0%;
}



.fa {
padding: 15px;
font-size: 10px;
width: 7.5px;
height: 7.5px;
text-align: center;
text-decoration: none;
border-radius: 50%;
}


.fa:hover {
opacity: 0.7;
}



.fa-linkedin {
background: black;
color: white;
}


.fa-instagram {
background: black;
color: white;
}

.fa-github {
background: black;
color:white
}
Comment on lines +81 to +95

Choose a reason for hiding this comment

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

Since these all have the same property, you can do

.fa:hover, .fa-instagram, .fa-github {

}

or give all of these elements the same class name instead of three separate ones.



.likes {
display: flex;
justify-content: space-evenly;


}

footer {
text-align: center;
}






Loading