-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (63 loc) · 3.16 KB
/
index.html
File metadata and controls
65 lines (63 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<html>
<head>
<title>Ruby newbie</title>
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
<!-- CSS Reset -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<!-- Milligram CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css">
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="container">
<h1 class="title">Ruby Newbie</h1>
<p>Август-сентябрь 2024</p>
<img src="diamonds.png" />
</div>
</header>
<section id="course-description" class="container course-description">
<label for="story">О чём курс по Ruby?</label>
<p style="border:3px #FA8072 solid; padding: 5px 0 5px 15px; text-indent: 20px;">
Курс по программированию на Ruby предназначен для начинающих и направлен на изучение основ этого динамического и простого в освоении языка программирования. В рамках курса будут рассмотрены ключевые концепции Ruby, такие как переменные, условные выражения, циклы, методы, работа с массивами и хешами, а также основы объектно-ориентированного программирования. Студенты также познакомятся с основными библиотеками Ruby и научатся работать с файлами и регулярными выражениями. По завершении курса участники смогут создавать простые приложения и понимать основы веб-разработки с использованием Ruby.
</p>
<a href="https://github.com/ruby-newbie">Репозиторий</a>
<ul>
<li>Основы работы в терминале</li>
<li>Основы git</li>
<li>Основы Ruby</li>
<li>Ruby on Rails</li>
</ul>
<p class="materials">👩💻 Организация на гитхабе </p>
<p class="materials">🔂 Репозиторий </p>
<p class="materials">✍️ Отзывы </p>
</section>
<section class="schedule container">
<h2 class="title">Расписание</h2>
<table>
<thead>
<tr>
<th>Дата</th>
<th>Тема</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.01.2024</td>
<td>8.01.2024</td>
</tr>
<tr>
<td>Введение</td>
<td>Ruby</td>
</tr>
</tbody>
</table>
</section>
<section class="additional container">
</section>
</div>
</body>
</html>
>>>>>>> main