Styled lab 2 assignment

This commit is contained in:
Nicolas Seydoux 2020-11-28 22:44:37 +01:00
parent 5ed26cbfbf
commit 75afb520c3
2 changed files with 42 additions and 3 deletions

View file

@ -1,6 +1,7 @@
<html> <html>
<head> <head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="./style.css"></link>
<title>SWoT Lab 2</title> <title>SWoT Lab 2</title>
</head> </head>
<body> <body>
@ -18,10 +19,11 @@
<li>git</li> <li>git</li>
</ul> </ul>
</li> </li>
<li>Clone the following git repository : https://framagit.org/nseydoux/iss-semantics-lab</li> <li>Clone the following git repository : <code>git clone https://framagit.org/nseydoux/iss-semantics-lab</code></li>
<li>You can import the Maven project in Eclipse: <img src="5iss_lab-2_mvn.gif" alt="File->Import->Maven->Existing Maven Project..."/> </li> <li>You can import the Maven project in Eclipse: </li>
<img class="figure" src="eclipse-mvn.gif" alt="File->Import->Maven->Existing Maven Project..."/>
<li>Go to the cloned repo, and execute the command <code>mvn compile</code></li> <li>Go to the cloned repo, and execute the command <code>mvn compile</code></li>
<li>If all goes well, you can now test your code using the command <pre>mvn test</pre>. The tests will fail, because nothing is implemented yet. These tests are unit tests, validating each functionnality that you have to develop. Try to run them as you go.</li> <li>If all goes well, you can now test your code using the command <code>mvn test</code>. The tests will fail, because nothing is implemented yet. These tests are unit tests, validating each functionnality that you have to develop. Try to run them as you go.</li>
<li>Download <a href="https://zwifi.eu/raw_weather_data_aarhus.tar.gz">the dataset</a>.</li> <li>Download <a href="https://zwifi.eu/raw_weather_data_aarhus.tar.gz">the dataset</a>.</li>
</ul> </ul>

37
assignments/style.css Normal file
View file

@ -0,0 +1,37 @@
body {
margin: 0 auto;
max-width: 50em;
font-family: "Helvetica", "Arial", sans-serif;
line-height: 1.5;
padding: 4em 1em;
}
h1 {
text-align: center;
}
h2 {
margin-top: 1em;
padding-top: 1em;
}
.figure {
display: block;
margin-left: auto;
margin-right: auto;
max-width:100%;
}
code,
pre {
background: #eee;
}
code {
padding: 2px 4px;
vertical-align: text-bottom;
}
pre {
padding: 1em;
}