-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
155 lines (113 loc) · 4.9 KB
/
Copy pathindex.html
File metadata and controls
155 lines (113 loc) · 4.9 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tutorial Rust</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;700;900&family=Ubuntu:wght@400;700&display=swap" rel="stylesheet">
<!-- CSS stylesheets -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- Bootstrap scripts -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/styles.css">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/0fd7fb9dad.js" crossorigin="anonymous"></script>
</head>
<body>
<section class="colored-section" id="title">
<div class="container-fluid">
<!-- Nav Bar -->
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="">Rust</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="Tutorial_rust.html">Notebook</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Presentacion.pdf">Presentación</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.rust-lang.org">Documentación</a>
</li>
</ul>
</div>
</nav>
<!-- Title -->
<div class="row">
<div class="col-lg-8">
<h1 class="big-heading">Tutorial Rust LP-2021-1</h1>
<h4>
Por:
</h4>
<h5>Andrés Ricardo Ardila</h5>
<h5>Diego Alejandro Bayona Cardozo</h5>
<h5>Andrés Ricardo Pérez Rojas</h5>
<h5>Alejandra Zambrano Luna</h5>
</div>
<div class="col-lg-4">
<img class="title-image" src="images/Rust_logo.png" alt="iphone-mockup">
</div>
</div>
</div>
</section>
<!-- Features -->
<section class="white-section" id="features">
<div class="container-fluid">
<div class="row">
<div class="col-md-4 features-col">
<i class="fas fa-database fa-4x features-icon"></i>
<h3 class="feature-title">Mejor manejo de memoria</h3>
<p>Permite control de los errores de memoria de bajo nivel sin utilizar un garbage collector</p>
</div>
<div class="col-md-4 features-col">
<i class="fas fa-microchip fa-4x features-icon"></i>
<h3 class="feature-title">Concurrencia más sencilla</h3>
<p>Evita las condiciones de carrera con el modelo de Ownership y el borrow checker</p>
</div>
<div class="col-md-4 features-col">
<i class="fas fa-search fa-4x features-icon"></i>
<h3 class="feature-title">Abstracciones sin costo</h3>
<p>Sin diferencia en tiempo de ejecución entre código de bajo nivel y código con abstracciones</p>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="colored-section" id="testimonials">
<div id="" class="py-5 px-3" >
<div class="py-5">
<h2 class="testimonial-text">“Rust is a modern systems programming language focusing on safety, speed, and concurrency. It accomplishes these goals by being memory safe without using garbage collection.”</h2>
<img class="testimonial-image" src="images/ferris_lee.png" alt="dog-profile">
<em>Ferris the Crab, Rust documentation</em>
</div>
</div>
</section>
<!-- Call to Action -->
<!-- Footer -->
<footer class="white-section" id="footer">
<div class="container-fluid">
<i class="social-icon fas fa-envelope"></i>
<ul style="list-style-type:none;">
<li >
alzambranolu@unal.edu.co
</li>
<li>
riperezro@unal.edu.co
</li>
<li>
arardilaag@unal.edu.co
</li>
<li>
dbayonac@unal.edu.co
</li>
</ul>
</div>
</footer>
</body>
</html>