Skip to content

Commit

Permalink
Merge pull request #1 from gealsanchez/htmlCSS-Session-Day-3
Browse files Browse the repository at this point in the history
Html css session day 3
  • Loading branch information
gealsanchez authored Sep 24, 2022
2 parents 7f31fe7 + fdd7b64 commit 0ebc29a
Show file tree
Hide file tree
Showing 11 changed files with 287 additions and 2 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Linters

on: pull_request

env:
FORCE_COLOR: 1

jobs:
lighthouse:
name: Lighthouse
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Setup Lighthouse
run: npm install -g @lhci/cli@0.7.x
- name: Lighthouse Report
run: lhci autorun --upload.target=temporary-public-storage --collect.staticDistDir=.
webhint:
name: Webhint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Setup Webhint
run: |
npm install --save-dev hint@7.x
[ -f .hintrc ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css/.hintrc
- name: Webhint Report
run: npx hint .
stylelint:
name: Stylelint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Setup Stylelint
run: |
npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x
[ -f .stylelintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css/.stylelintrc.json
- name: Stylelint Report
run: npx stylelint "**/*.{css,scss}"
nodechecker:
name: node_modules checker
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Check node_modules existence
run: |
if [ -d "node_modules/" ]; then echo -e "\e[1;31mThe node_modules/ folder was pushed to the repo. Please remove it from the GitHub repository and try again."; echo -e "\e[1;32mYou can set up a .gitignore file with this folder included on it to prevent this from happening in the future." && exit 1; fi
42 changes: 42 additions & 0 deletions Illustration-header.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions Linkedin icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 42 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,42 @@
# portfolio
Professional Portfolio
![](https://img.shields.io/badge/Microverse-blueviolet)

# Project Name

Professional Portfolio Phase 1 Repository

## Built With

- HTML & CSS
- GitHub

## Live Pull Request

[Live Pull Request Link](https://github.com/gealsanchez/portfolio/pull/1)

## Authors

👤 **Author1**

- GitHub: [@githubhandle](https://github.com/gealsanchez)
- Twitter: [@twitterhandle](https://twitter.com/gealsanchez)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/gerson-sanchez-88309b57/)

## 🤝 Contributing

Contributions, issues, and feature requests are welcome!

## Show your support

Give a ⭐️ if you like this project!

## Acknowledgments

- Francis Uche
- Giorgi Bokuchava

## 📝 License

This project is [MIT](./MIT.md) licensed.

_NOTE: we recommend using the [MIT license](https://github.com/gealsanchez/portfolio/blob/htmlCSS-Session-Day-3/LICENSE) - you can set it up quickly by [using templates available on GitHub](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). You can also use [any other license](https://choosealicense.com/licenses/) if you wish._

3 changes: 3 additions & 0 deletions angel list.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions github.svg
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 hamburguer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!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="styles.css">
<title>Professional Portfolio GERSON SANCHEZ</title>

</head>

<body>

<div class="container">
<header>
<nav class="navigation">
<p>John Doe</p>
<img class="menu" src="hamburguer.png" alt="">
</nav>
</header>

<h1 class="name">Hey There. I'm Gerson</h1>
<h2 class="title">I am a software developer </h2>
<p class="profile">I can help you build a product, feature or
website. Take a
look of my works. If you like what you see and have a project you need coded, don’t hesitate and contact me.
</p>

<div class="divlink">
<div class="links">
<a href="https://github.com/gealsanchez"><img src="github.svg" alt=""></a>
<a href="https://www.linkedin.com/in/gerson-sanchez-88309b57/"><img src="Linkedin icon.svg" alt=""></a>
<a href="https://angel.co/"><img src="angel list.svg" alt=""></a>
<a href="https://twitter.com/gealsanchez"><img src="twitter.svg" alt=""></a>
<a href="https://medium.com/tag/javascript"><img src="medium.svg" alt=""></a>
</div>
<img class="image" src="Illustration-header.svg" alt="">
</div>

</div>

</body>

</html>
3 changes: 3 additions & 0 deletions medium.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 0ebc29a

Please sign in to comment.