+ 8
I think repo for them just means a long project that they would build from ground up.And update it per lesson or so.
not like github repo or something like that.
its just a misnomer i guess.
its same like that contact form page that we built with with css i guess...
+ 20
ChillPill
At the moment I can't share more information about this new feature. But I found this:
https://medium.com/sololearn/announcing-code-repo-for-html-course-14a695a5fee0
I will try to find out more about this stuff and hope I can amswer you why it is called repo.
+ 15
Code repo is just a CV project in html course.
In this project we have to build a html markup for making a CV .
it looks like this.
https://code.sololearn.com/WA0A1a12A22a/?ref=app
+ 8
ChillPill
I showed your question Shahane. She will ask the team to give an explanatory answer.
+ 6
"Code Repo is available when you subscribe to SoloLearn PRO. Check it out today by starting your free trial."
PRO feature "I'm out" lol :')
+ 3
It seems to be an interactive version of the Blog project that was there before.
+ 1
Code Repo!
Q. In this project we will build a Ticketing Website for the Eiffel Tower in Paris!
We will start from the basic web structure, then style the page and create a ticket price calculation section.
Let's get started with some basic HTML!
ANSWER
<section>
<h1>The Eiffel Tower</h1>
<a href="https://test.com/image.jpg" target="_blank">
<img src="https://test.com/image.jpg" alt="Some Image" width="50%" >
</a>
<p>The<strong>Eiffel Tower</strong> is a wrought-iron tower that stands <strong>1,063 ft (324 m)</strong>tall in <strong>Paris</strong></p>
<p>Currently, the <strong>Eiffel Tower</strong>is the most-visited monument in the world with over <strong>7 million</strong>visitors a year.</p>
<p>Visitors can choose to go up using the Tower lift or the stairs. There are 1,665 steps to the top.</p>
<p><b>Transport</b></p>
<ul>
<li>Bus: lines 42, 69, 72, 82 and 87.</li>
<li>Metro: Trocadero, Ecole militaire.</li>
<li></li>
</ul>
<p><b>Prices</b></p>
<table border="1">
<tr>
<th>Category</th>
<th>Prices</th>
</tr>
<tr>
<td>Adult</td>
<td></td>
</tr>
</table>
</section>
<section>
<form>
<label for="adult">Adult</label>
<br />
<input type="number" id="adult">
<label for="children">Children</label>
<br />
<input type="number" id="children">
<input type="button" value="Buy">
</form>
</section>
<footer>
©Copyright
</footer>
- 4
CSS
body { }
img {
width:100px;
}
input, textarea {
width:60%;
margin-left:10px;
}
- 6
HTML
<!DOCTYPE html>
<html>
<head>
<title>CV for Product Manager</title>
</head>
<body>
<h1>M. Alif Deva Rizqon</h1>
<hr>
<p><strong>Product Manager</strong></p>
<img src = "https://cdn2.iconfinder.com/data/icons/avatars-99/62/avatar-370-456322-512.png"/>
<h2><i>Summary</i></h2>
<p>Product Manager with high experience in Software Product Management.</p>
<h2><i>Experience</i></h2>
<ul>
<li>
<b>Product Manager | 2020-Present</b>
<p>Taking care of Software Product</p>
</li>
<li>
<b>Sr. Software Engineer | 2018-2020</b>
<p>Developed Online Transport Software</p>
</li>
</ul>
<h2><i>Skills</i></h2>
<table border="1">
<tr>
<th>Technologies</th>
<td>Java</td>
<td>Python</td>
<td>JS</td>
</tr>
<tr>
<th>Soft Skills</th>
<td>Team Work</td>
<td>Self Learning</td>
<td>Team Work</td>
</tr>
</table>
<h2><i>Contacts</i></h2>
<a href="account1 link" target="_blank">Linkedin</a>
<a href="account2 link" target="_blank">GitHub</a>
<a href="account3 link" target="_blank">StackOverFlow</a>
<h2><i>Write me a message</i></h2>
<form>
<input type = "text" value = "DV" placeholder="Name"/><br><br>
<input type = "text" value = "abc@gmail.com" placeholder="Email"/><br><br>
<input type = "text" value = "1234567890" placeholder="Mobile Number"/><br><br>
<textarea placeholder="Message" value = "Hi, I am learning languages" required ></textarea><br>
<input type="submit" value="SEND"/>
</form>
</body>
</html>
Good Luck
- 6
JS
{}