Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
356cb53
created article containing an image, paragraph and a hyperlink for a …
alexandru-pocovnicu Jan 1, 2026
9ec5b47
add wireframe article
alexandru-pocovnicu Jan 1, 2026
ab03617
Update body and footer styles for improved layout
alexandru-pocovnicu Jan 1, 2026
af6d5c3
Refactor index.html for improved readability and add GIT branch article
alexandru-pocovnicu Jan 1, 2026
8c3472d
add header and short description
alexandru-pocovnicu Jan 1, 2026
4aaa83d
Add center alignment for h1 elements in style.css
alexandru-pocovnicu Jan 1, 2026
845567a
Update README image source and alt text for clarity
alexandru-pocovnicu Jan 1, 2026
050d3ef
Add margin and center alignment to h1, adjust header spacing, and lim…
alexandru-pocovnicu Jan 1, 2026
1620330
add background color, and style to the read more
alexandru-pocovnicu Jan 3, 2026
0317d1d
Update section headings for clarity in index.html
alexandru-pocovnicu Jan 3, 2026
f73f345
Update body background color and link background color for improved a…
alexandru-pocovnicu Jan 17, 2026
6e871a0
created images folder and added images to it
alexandru-pocovnicu Jan 18, 2026
dca3c8c
changed the source of the images
alexandru-pocovnicu Jan 18, 2026
e4a0432
changed the alt description
alexandru-pocovnicu Jan 18, 2026
e14ff52
changed trailing with a single period
alexandru-pocovnicu Jan 18, 2026
9449c44
change Mob for Phone
alexandru-pocovnicu Jan 18, 2026
5e02645
add margin and height styles for article elements and images
alexandru-pocovnicu Jan 18, 2026
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 Wireframe/images/download.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 added Wireframe/images/readme-links.webp
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 Wireframe/images/wireframe-example-plain.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 50 additions & 11 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand All @@ -8,26 +8,65 @@
</head>
<body>
<header>
<h1>Wireframe</h1>
<h1>Starting a project</h1>
<p>
This is the default, provided code and no changes have been made yet.
The following page contains an introduction to a README file,a
WIREFRAME, and to GIT BRANCH.
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<img
src="images/readme-links.webp"
alt="Screenshot of a README for a repository. To the left of a section heading, a link icon is outlined in dark orange."
/>
<h2>What is a README file</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
A README file can be added to the repository to tell other people why
the project is useful, what they can do with the project, and how they
can use it.
</p>
<a href="">Read more</a>
<a
href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes"
>Read more</a
>
</article>
<article>
<img
src="images/wireframe-example-plain.png"
alt="Wireframe mockup of a product page for a cushy fleece hoodie with image gallery, size selector, and add-to-cart button"
/>
<h2>What is a WIREFRAME</h2>
<p>
A wireframe is the skeleton of your digital project. Think of it as
the foundation for your website, app, or dashboard. It focuses on
layout, and content placement—not on colors, fonts, or any visual
polish.
</p>
<a href="https://balsamiq.com/blog/what-are-wireframes/">Read more</a>
</article>
<article>
<img
src="images/download.png"
alt="Diagram titled ‘GIT Branch and its Operations’ showing master and two feature branches with colored nodes and commits, plus a git logo"
/>
<h2>What is a GIT BRANCH</h2>
<p>
Use a branch to isolate development work without affecting other
branches in the repository. Each repository has one default branch,
and can have multiple other branches. You can merge a branch into
another branch using a pull request.
</p>
<a
href="https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches"
>Read more</a
>
</article>
</main>
<footer>
<p>
This is the default, provided code and no changes have been made yet.
</p>
<p>Contact:</p>
<p>Phone:123456</p>
<p>G-mail:dfdfd@gmail.com</p>
</footer>
</body>
</html>
57 changes: 45 additions & 12 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,51 @@ As well as useful links to learn more */
/* ====== Base Elements ======
General rules for basic HTML elements in any context */
body {
background: var(--paper);
color: var(--ink);
font: var(--font);
margin-bottom: 9rem;
}

header {
margin-bottom: 5rem;
}

h1 {
margin-bottom: 5rem;
text-align: center;
}

article h2,
article p,
article a {
margin-left: 1rem;
}

article h2 {
height: 4rem;
display: flex;
align-items: center;
margin-bottom: 1rem;
}

a {
background-color: #000004;
color: white;
padding: var(--space);
border: var(--line);
max-width: fit-content;
border: none;
display: inline-block;
max-width: 7rem;
max-height: 2rem;
text-align: center;
text-decoration: none;
}
img,
svg {
width: 100%;
height: 280px;
object-fit: cover;
}

/* ====== Site Layout ======
Setting the overall rules for page regions
https://www.w3.org/WAI/tutorials/page-structure/regions/
Expand All @@ -50,9 +81,13 @@ main {
margin: 0 auto calc(var(--space) * 4) auto;
}
footer {
background-color: aquamarine;
text-align: center;
position: fixed;

bottom: 0;
text-align: center;
left: 0;
right: 0;
}
/* ====== Articles Grid Layout ====
Setting the rules for how articles are placed in the main element.
Expand All @@ -78,12 +113,10 @@ article {
border: var(--line);
padding-bottom: var(--space);
text-align: left;
display: grid;
grid-template-columns: var(--space) 1fr var(--space);
> * {
grid-column: 2/3;
}
> img {
grid-column: span 3;
}
display: flex;
flex-direction: column;
}

article a {
margin-top: auto;
}