diff --git a/resources/views/site/help/tagging-people.blade.php b/resources/views/site/help/tagging-people.blade.php
new file mode 100644
index 000000000..b02944ae9
--- /dev/null
+++ b/resources/views/site/help/tagging-people.blade.php
@@ -0,0 +1,29 @@
+@extends('site.help.partial.template', ['breadcrumb'=>'Tagging People'])
+
+@section('section')
+
+
+
Tagging People
+
+
+ Tag people in your posts without mentioning them in the caption.
+
+
Tagging People in Posts
+
+ - You can only tag local and public accounts who haven't blocked you.
+ - You can tag up to 10 people.
+
+
+
+
+
+
+
+ - Tagging someone will send them a notification.
+ - You can untag yourself from posts.
+ - Only tag people you know.
+
+
+
+
+@endsection
\ No newline at end of file
diff --git a/routes/web.php b/routes/web.php
index 4810ef7e9..bfec403d8 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -420,7 +420,7 @@ Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofact
Route::view('report-something', 'site.help.report-something')->name('help.report-something');
Route::view('data-policy', 'site.help.data-policy')->name('help.data-policy');
Route::view('labs-deprecation', 'site.help.labs-deprecation')->name('help.labs-deprecation');
-
+ Route::view('tagging-people', 'site.help.tagging-people')->name('help.tagging-people');
});
Route::get('newsroom/{year}/{month}/{slug}', 'NewsroomController@show');
Route::get('newsroom/archive', 'NewsroomController@archive');