Skip to content

Commit 5871fbb

Browse files
feature/wireframe
1 parent ff7b9d0 commit 5871fbb

2 files changed

Lines changed: 39 additions & 6 deletions

File tree

Wireframe/index.html

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,40 @@
88
</head>
99
<body>
1010
<header>
11-
<h1>Wireframe</h1>
11+
<h1>Learning Git and Wireframe</h1>
1212
<p>
13-
This is the default, provided code and no changes have been made yet.
13+
This webpage explains README files, wireframes and Git branches.
1414
</p>
1515
</header>
1616
<main>
1717
<article>
1818
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
19+
<h2>What is the purpose of a README file?</h2>
2020
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
21+
A README file is a text file that provides information about a project and how to use it.
22+
</p>
23+
<a href="">Read more</a>
24+
</article>
25+
<article>
26+
<img src="placeholder.svg" alt="" />
27+
<h2>What is the purpose of a Wireframe?</h2>
28+
<p>
29+
A wireframe is a visual plan used to organise the structure of a website.
30+
</p>
31+
<a href="">Read more</a>
32+
</article>
33+
<article>
34+
<img src="placeholder.svg" alt="" />
35+
<h2>What is the purpose of a Git branch?</h2>
36+
<p>
37+
A Git branch is a separate line of development in a Git repository that allows developers to work on different features or bug fixes without affecting the main codebase.
2338
</p>
2439
<a href="">Read more</a>
2540
</article>
2641
</main>
2742
<footer>
2843
<p>
29-
This is the default, provided code and no changes have been made yet.
44+
Created by Alexandra Clincu.
3045
</p>
3146
</footer>
3247
</body>

Wireframe/style.css

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,21 @@ article {
8787
grid-column: span 3;
8888
}
8989
}
90+
91+
92+
header{
93+
text-align: center;
94+
}
95+
main{
96+
width: 80%;
97+
margin: auto ;
98+
99+
}
100+
article{
101+
border: 1px solid black;
102+
padding: 10px;
103+
margin-bottom: 20px;
104+
}
105+
footer{
106+
text-align: center;
107+
}

0 commit comments

Comments
 (0)