Skip to content

Commit 9d30cce

Browse files
Adding main content for the website such as image, paragraph content, other.
1 parent cf79dc1 commit 9d30cce

2 files changed

Lines changed: 59 additions & 23 deletions

File tree

Wireframe/index.html

Lines changed: 29 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,42 +13,53 @@ <h1>Wireframe Basic knowledge</h1>
1313
This is the default, provided code and no changes have been made yet.
1414
</p>
1515
</header>
16+
<hr>
1617
<main>
17-
<div id="div-1">
18+
<div id="div-1">
1819
<article class="article-border">
19-
<img src="placeholder.svg" alt="" class="" />
20+
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20240702120959/Readme1.png" alt="An image with the work Read ME with green color" id="image-size" />
2021
<h2>READ ME.md file and what is purpose.</h2>
2122
<p>
22-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
23-
voluptates. Quisquam, voluptates.
23+
Readme.md is a type of file mainly to tell other other programmer, developer
24+
and other coder by to serve as the entry point and primary documentation for a software project,
25+
providing an overview that explains what the project does, why it is useful, and how to install and use it.
26+
It helps users quickly understand, set up, and contribute to the code
2427
</p>
25-
<a href="" class="Link-box-border">Read more</a>
28+
<a href="https://www.makeareadme.com" target="_blank" class="Link-box-border">Read more</a>
2629
</article>
2730
</div>
28-
<hr>
31+
2932
<!--The second Item-->
3033
<div id="row-side">
34+
<div class="content-size">
3135
<article class="article-border">
32-
<img src="placeholder.svg" alt="" class="" />
36+
<img src="https://images.prismic.io/prismic-main/Zoa6gh5LeNNTwzHJ_web_design_wireframe.jpeg?auto=format,compress" alt="Is an example of how to design web layout" class="image-size-2" />
3337
<h2>What is a wireframe and the purpose of it used</h2>
34-
<p>
35-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
36-
voluptates. Quisquam, voluptates.
38+
<p id="paragraph-3" >
39+
What is wireframe, wireframe
40+
is a way to design a website service at the structural level.
41+
A wireframe is commonly used to layout content and functionality on a page which takes into account user needs and user journeys.
42+
wireframes are used early in the development process to establish the basic structure of a page before visual design and content is added.
3743
</p>
38-
<a href="" class="Link-box-border">Read more</a>
44+
<a href="https://www.figma.com/resource-library/what-is-wireframing/" target="_blank" class="Link-box-border">Read more</a>
3945
</article>
40-
46+
</div>
4147
<!--The third item-->
42-
48+
<div class="content-size">
4349
<article class="article-border">
44-
<img src="placeholder.svg" alt="" class="" />
50+
<img src="https://media.licdn.com/dms/image/v2/D4D12AQH6ykM-AVoDKg/article-cover_image-shrink_720_1280/B4DZZW5EzAHAAM-/0/1745214525491?e=2147483647&v=beta&t=kB_Gy_FceQSnp1FMZ2lVvoPis3lrcCQjgX0Zur3z4pc" alt="a detail map on what is git and branch" class="image-size-2" />
4551
<h2>Git, repo and branch</h2>
46-
<p>
47-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
48-
voluptates. Quisquam, voluptates.
52+
<p >
53+
Git, repo and branch are some basic knowledge that you should learn when you start programming. They can be a powerful tool
54+
that will help you on your journey, especially later on when you do a group project or your own personal project.
55+
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency,
56+
how ever they also allow you save, control and redo your project file version. Repository is when you work on a group project
57+
you can copy all of the files of the main project and make your self owner of that copy project. Branch is for when you want to make some change like adding image, changing color
58+
or add some functionality to the project doesn't effect the main original file.
4959
</p>
50-
<a href="" class="Link-box-border">Read more</a>
60+
<a href="https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches" target="_blank" class="Link-box-border">Read more</a>
5161
</article>
62+
</div>
5263
</div>
5364
</main>
5465
<footer>

Wireframe/style.css

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*Main part of the website content(do not deleted)*/
2-
.image-size {
3-
width: 100%;
4-
height: 20%;
2+
#image-size{
3+
width:100%;
4+
height: auto;
55
}
66
.article-border{
77
border: 2px solid black;
@@ -10,26 +10,50 @@
1010
padding-bottom: 20px;
1111
}
1212

13+
14+
body{
15+
background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
16+
}
17+
footer{
18+
background-color: black;
19+
20+
}
21+
22+
article{
23+
background-color: white;
24+
}
1325
/*This is for the position of the first Item*/
1426
#div-1{
1527
width: 73%;
1628
height: 20%;
1729
position: relative;
1830
left:17%;
31+
overflow: hidden;
32+
margin-bottom: 20px;
1933
}
2034

2135
/*This part is mainly for item 2 and 3*/
2236

2337
#row-side{
24-
width: 74%;
38+
width:73%;
2539
display: flex;
2640
position: relative;
2741
left: 17%;
2842
padding: 0px 0px 0px -10px;
2943
}
3044

45+
.content-size{
46+
width: 60%;
47+
48+
}
3149

32-
50+
.image-size-2{
51+
width:100%;
52+
53+
}
54+
#paragraph-3{
55+
margin-bottom: 102px;
56+
}
3357
/*This for the read more button do not deleted*/
3458
.Link-box-border{
3559
border: 2px solid black;
@@ -41,6 +65,7 @@ p{
4165
margin: 0px 0px 30px 5px;
4266
}
4367

68+
4469
/*For heading styling*/
4570
h2{
4671
margin-bottom: 5px;

0 commit comments

Comments
 (0)