Skip to content
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 Wireframe/1_K9scAx1Ezd-KJFabaYseCw.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/branch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 32 additions & 8 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,49 @@
</head>
<body>
<header>
<h1>Wireframe</h1>
<h1>Exercise</h1>
<p>
This is the default, provided code and no changes have been made yet.
Today we will learn about README files, <br>
Wireframe and branch in git.
</p>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<img src="readme-automatic-toc.png" alt="readme file github" />
<h2>Purpose of a README file</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
README Files are a common way
Copy link

Choose a reason for hiding this comment

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

ok

to document the contents and structure
of a folder and/or a dataset
so that a researcher can locate the information they need.
</p>
<a href="">Read more</a>
<a class="container" href="https://datamanagement.hms.harvard.edu/collect-analyze/documentation-metadata/readme-files#:~:text=README%20Files%20are%20a%20common,Explore%20additional%20Documentation%20%26%20Metadata%20practices.">Read more</a>
</article>
<section class="sections">
<img src="wireframe-example-plain.png" alt="wireframe example" />
<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 class="container" href="https://balsamiq.com/blog/what-are-wireframes/">Read more</a>
</section>
<section class="sections">
<img src="1_K9scAx1Ezd-KJFabaYseCw.png" alt="branch in git" id="pic"/>
<h2>What is a branch in git</h2>
<p>A branch in Git is simply a lightweight movable pointer
Copy link

Choose a reason for hiding this comment

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

Thank you for the information. All are ok for me...

to one of these commits.
The default branch name in Git is master.
As you start making commits, you're given a master branch
that points to the last commit you made.
</p>
<a class="container" href="https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell#:~:text=A%20branch%20in%20Git%20is,the%20last%20commit%20you%20made.">Read more</a>
</section>
</main>

<footer>
<p>
This is the default, provided code and no changes have been made yet.
website created as an exercise by hyfbe student
</p>
</footer>
</body>
Expand Down
Binary file added Wireframe/readme-automatic-toc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 30 additions & 3 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,18 @@ As well as useful links to learn more */
General rules for basic HTML elements in any context */
body {
background: var(--paper);
background-color: powderblue;
color: var(--ink);
font: var(--font);
text-align: center;
}
a {
padding: var(--space);
border: var(--line);
max-width: fit-content;
padding-block: var(--space);

padding: var(--space);
}
img,
svg {
Expand Down Expand Up @@ -78,12 +83,34 @@ article {
border: var(--line);
padding-bottom: var(--space);
text-align: left;
text-justify: distribute;
display: grid;
grid-template-columns: var(--space) 1fr var(--space);
> * {
grid-column: 2/3;
}
> img {
grid-column: span 3;
}

}
.sections {
text-align: left;
border: var(--line);
padding-inline: var(--space);
padding-bottom: var(--space);
text-justify: distribute;
}
.container {
padding-block: var(--line);
}

img {
object-fit: cover;
margin-top: 15px;
}

#pic {
height: 400px;
}




Binary file added Wireframe/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.
Loading