Skip to content

Commit

Permalink
✨ feat: Add new meta tags to all HTML files
Browse files Browse the repository at this point in the history
Were added the meta tags: author and description, to all HTML files
  • Loading branch information
Raphael-GC committed Oct 8, 2024
1 parent 3aa344f commit c168c17
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/styles.css">
<title>Raphael Carneiro | WDD 130</title>
<meta name="author" content="Raphael Carneiro">
<meta name="description" content="A short description of Raphael Carneiro professional achievements">
</head>
<body>
<header>
Expand All @@ -29,7 +31,6 @@ <h1>Raphael Carneiro | WDD 130</h1>

My main goal is to gain experience as a junior developer and ultimately become a software engineer. If you've read this far and are seeking someone committed, with a passion for challenges and opportunities for growth, that person is me 🫡. I'm actively searching for internship, freelance, or junior developer roles.
</p>
<br><br>
</main>
<footer>
<p>©2024 Raphael Carneiro 🌳 Rio de Janeiro, Brazil</p>
Expand Down
22 changes: 16 additions & 6 deletions styles/styles.css
Original file line number Diff line number Diff line change
@@ -1,25 +1,35 @@
nav {
background-color: steelblue;
padding: 10px;
display: flex;
gap: 20px;
padding: 10px 10px 0px 10px;
justify-content: right;
}

nav a {
color: white;
display: block;
padding: 20px;

padding: 5px;
margin: 0;
font-size: 20px;
background-color: #999999;
border-radius: 10%;
text-decoration: none;
box-shadow: 0 0 30px gray;
}

h1 {
color: stealblue;
text-align: center;
/*padding-top: 40px;*/
color: steelblue;
}

img {
float: left;
width: 150px;
height: auto;
border: 1px solid steelblue;
padding: 2px;
box-shadow: 0 0 30px gray;
margin: 15px;
}

p {
Expand Down
2 changes: 2 additions & 0 deletions week02/box-model.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/box-model.css">
<title>Raphael Carneiro | Box Model</title>
<meta name="author" content="Raphael Carneiro">
<meta name="description" content="An important scripture about whom we can trust.">
</head>
<body>
<main>
Expand Down

0 comments on commit c168c17

Please sign in to comment.